zixing
zixing
这个我也遇到过,而且找不到谁删除的,然后修改了maye.exe,后面加上几个空格就好了
这个我也遇到过,而且找不到谁删除的,然后修改了maye.exe,后面加上几个空格就好了
可以确定基本上是SetCurrentValue(IsDropDownOpenProperty, ValueBoxes.TrueBox);这句导致的报错,因为注释掉这句出现的2个地方就不会报异常,至于异常原因,我怀疑可能和IsDropDownOpen内部的一些操作有关系,他注册了2个函数,至于解决方案,可以定义一个IsDropDownOpen2的依赖属性,然后把popup的IsOpen绑定到IsDropDownOpen2上面,经过测试不会再出现异常。
It is great if this project can run on kaios!
Here is another repo : https://github.com/zixing131/strongR-frida/releases/tag/15.1.17
在AutoCompleteTextBox.cs中加入这两句可以暂时解决这个问题 public new static readonly DependencyProperty IsDropDownOpenProperty = DependencyProperty.Register("IsDropDownOpen", typeof(bool), typeof(ComboBox), new FrameworkPropertyMetadata(ValueBoxes.FalseBox, FrameworkPropertyMetadataOptions.BindsTwoWayByDefault)); public new bool IsDropDownOpen { get { return (bool) GetValue(IsDropDownOpenProperty); } set { SetValue(IsDropDownOpenProperty, ValueBoxes.BooleanBox(value)); }...
note 9t is same
感觉可能是管理员权限的问题,尝试管理员权限运行maye试一下