Results 33 comments of ahdung
trafficstars

我的aria2能达到30m/s。环境供参考: Aria2: 1.36.0 AriaNg: 1.3.6e(0e1a8b0) OS: Windows 10 workstation 22H2 x64 Chrome: 114.0.5735.134 x64

So how to load `MemoryModule.dll` from memory?

@trungnt2910 Great! But I think the nuget package is unpopular, why embed dll, because developers(at least I am) only wants a `exe`, if we can accept managed dll, why can't...

@trungnt2910 You're right, I forgot the `Assembly.Load(byte[])` can handle managed thing. I understand the benefits of embeding dll, that's why I'm here. Looking forward to your great work.

@werasik2aa So how to `Use temp unlock with android utility tool`?

@ZhuYonglin 这个消息框是仿系统向的,追求的是一种正规的感觉,所以没有提供视觉元素方面的修改接口。要修改的话只能从源码着手,文本是在这里绘制的: https://github.com/ahdung/MessageBoxEx/blob/163620a0716644bd118afdff503b084bbc251d74/MsgBox.cs#L674

@ZhuYonglin 因为`GlobalFont`用在多个地方,牵连较大,所以如果你只想改消息区,还只能在` TextRenderer.DrawText`处指定特别字体,另外,颜色也可以在这里改。 至于标题栏字体,由于这是标准的Windows窗体,标题边框等元素由系统控制,并不是自绘的,所以改不了~或者说只能改系统主题。

@ZhuYonglin 这些是根据内容自动确定的,如果你想手动,可以在MessageForm的构造里改ClientSize,这控制的是整个消息窗体的尺寸,至于按钮区的尺寸,可在CreateButtonsPanel中找找。