摘要:
有时候,打开Notepad++时不希望它自动打开历史文件,此时可进行如下设置: Settings > Preferences... > Backup:uncheck掉Remember current session for next launch即可! 阅读全文
摘要:
Cited from: http://www.cnblogs.com/renyuan/p/4111695.html 为什么要用INI文件?如果我们程序没有任何配置文件时,这样的程序对外是全封闭的,一旦程序需要修改一些参数必须要修改程序代码本身并重新编译,这样很不好,所以要用配置文件,让程序出厂后还能 阅读全文
摘要:
问题描述:有时需要把含图UserControl封装为dll以供外部调用,可当外部调用该dll时,有可能会遇到该UserControl无法加载其中图片的问题。 解决方案:将UserControl中的图片属性中Build Action由“Content”改为“Resource”,其他都不用动(包括保持“ 阅读全文
摘要:
CornerRadius是Border、Rectangle等控件的圆角属性,其值含义如下: CornerRadius="左上,右上,右下,左下" 阅读全文
摘要:
Cited from Microsoft Help: The Stretch property accepts the following values, which the Stretch enumeration defines: None: The TileBrush content does 阅读全文
摘要:
refer to: https://stackoverflow.com/questions/4480087/wpf-the-type-name-app-does-not-exist-in-the-type-occurs-after-renaming-mai 问题描述:当创建一个namespace名与 阅读全文
摘要:
问题分析:这是由于当前输入方式为“改写”,在此方式下,如果某个位置处后面有其他字符,当在此位置执行输入操作时,就会默认删除其后的所有字符。 解决方案:Word窗口下边缘状态栏,找到“改写”按钮,点击,使其切换为“插入”,问题解决。 说明:如果找不到“改写”按钮,是因为被隐藏了。右键点击状态栏,可将此 阅读全文
摘要:
fix - 向零方向取整 fix Round towards zero. fix(X) rounds the elements of X to the nearest integers towards zero. 例: t = 7.6806 3.5388 3.61302.3309 3.4719 7. 阅读全文