yanlinlin

Results 14 comments of yanlinlin

You can create a new project using HandyControl and add a `NumericUpDown` to the window. Then set its `Style` property to null: `Style="{x:Null}"` , it will disappear. Then add a...

1. Define a style with key: `` and then apply to a NumericUpDown: ``, it will disappear, too. Meanwhile, doing the same thing to CheckBox will not make it disappear....

To be honest, if you understand the difference between `Style` and `DefaultStyleKey`, you will find the current implementation is incorrect. You really should follow the instruction of official documents and...

解决了,修改一下showTab函数即可,注释掉的是原来的,注释下面的是改的 ` var showTab = function(a) { var $a = $(a); if($a.hasClass(ITEM_ON)) return; var href = $a.attr("href"); if(!/^#/.test(href)) return ; //$a.parent().find("."+ITEM_ON).removeClass(ITEM_ON); $a.parent().children("."+ITEM_ON).removeClass(ITEM_ON); $a.addClass(ITEM_ON); //var bd = $a.parents(".weui-tab").find(".weui-tab__bd"); //bd.find(".weui-tab__bd-item--active").removeClass("weui-tab__bd-item--active"); $a.parent().parent().children(".weui-tab__bd").children(".weui-tab__bd-item--active").removeClass("weui-tab__bd-item--active"); $(href).addClass("weui-tab__bd-item--active");...

这个代码区的识别有毒

I restarted the programm and it works!

In the `ShowCore` method from `src\Avalonia.Controls\Window.cs`, it checks the desired size and resize the window without consider the `WindowState`. It will make the window return to nomal. ``` var initialSize...