摘要:
记录了一些感觉比较用得到的tips用于随时查看。要想看完整的的内容还是阅读《Visual Studio 程序员箴言》,不过有些内容我在新版本的VS里没能实现,或者有替代方案了。避免意外复制一个空白行:工具→选项→文本编辑器→所有语言→常规,取消勾选“没有选定内容时对空行应用剪切或复制命令”;通过剪切... 阅读全文
摘要:
原文:《模拟MessageBox》Posted on 2014/01/07================================================================================这段时间在用WPF开发项目。界面采用的是类似Win8系统的Metr... 阅读全文
摘要:
原文:《User Settings in WPF》Posted on2014/04/09================================================================================介绍参看:How To: Write User Se... 阅读全文
摘要:
。 1 // Summary: 2 // A timer that is integrated into the System.Windows.Threading.Dispatcher queue 3 // which is processed at a specified interval of time and at a specified priority. 4 DispatcherTimer timer = new DispatcherTimer(); 5 // Summary: 6 // Occurs when the timer interval has e... 阅读全文
摘要:
WPF Popup: How to put a border around the popup?通过设置 Border 的 margin 来为阴影留出位置,并设置 Popup:AllowsTransparency="True"。 1 2 3 4 5 6 7 ...Content... 8 9 10 。 阅读全文
摘要:
WPF: How to make the TextBox/TextBlock/Label show "xxx..." if the text content too long?设置 属性 “TextTrimming”:=========================================... 阅读全文
摘要:
原文:C# Tips & Tricks:Weak References - When and How to Use ThemSometimes you have an object which is very large and needed multiple times, but not constantly, throughout your application. For example a huge lookup table, or the contents of a large file you need in memory for some algorithm. To wo 阅读全文
摘要:
ComboBoxCustomizing WPF combo box styleNavigationBuild Your Own Navigation Bar for Data Navigation in WPFWPF NavigationTreeListViewWPF TreeListView Controlhttp://www.codeproject.com/Articles/16009/A-Much-Easier-to-Use-ListViewTreeViewSimplifying the WPF TreeView by Using the ViewModel Pattern 阅读全文
摘要:
为了学习自定义控件,就想看看WPF基本元素的代码。使用到工具.NET Reflector。 System.Windows.Controls 命名空间在PresentationFramework.dll中。 Control Class继承关系。 Q:Where can I find System.Windows.Controls.dll and System.Windows.Controls.Data.dll ======================================================== 完整的操作:File -> Open Assembly Li... 阅读全文
摘要:
效果如下:用到扩展工具:NestIn可以通过 VS->工具->扩展管理器->联机库 搜索安装。In WPF: How to create resource dictionary files like MahApps.Metro?Nesting Files in VisualStudio 阅读全文