我有使用WM_NCHITTEST消息和CustomUserControl类的SizableUserControl类,它使用WS_EX_LAYOUTRTL和WS_EX_NOINHERITLAYOUT作为RightToLeft上的镜像。 当我使用时,运行时调整大小是相反的。 我该如何解决?
感谢您的帮助。
答案 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);
});
});
}