如何一起使用WM_NCHITTEST和WS_EX_LAYOUTRTL?

时间:2016-11-16 17:31:53

标签: c# right-to-left resizable wndproc createparams

我有使用WM_NCHITTEST消息和CustomUserControl类的SizableUserControl类,它使用WS_EX_LAYOUTRTL和WS_EX_NOINHERITLAYOUT作为RightToLeft上的镜像。 当我使用时,运行时调整大小是相反的。 我该如何解决?

感谢您的帮助。

1 个答案:

答案 0 :(得分:-1)

我通过将此代码添加到CustomUserControl类来修复它。

getSubcategoryProducts() {
    $('[data-ajax-url]').each((index, el) => {
        const $this = $(el);
        const thisCatURL = $this.data('ajax-url');
        let $thisCatProducts;

        $.ajax({
            url: thisCatURL,
            type: 'GET',
            dataType: 'html',
            async: true,

        }).done((data) => {
            $thisCatProducts = $(data).find('#product-listing-container').html();

            $this.html(thisCatProducts);
        });
    });
}