摘要:
添加命名空间:using System.Windows.Forms;using System.Drawing;随后引用一个Dll : C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\System.Drawing.dll现在我们就能直接使用winform的调色板控件了。 ColorDialog colorDialog = new ColorDialog(); colorDialog.AllowFullOpen = true; colorDialog.ShowDialog(); System.Windows.Media.SolidColorBrush s 阅读全文
摘要:
第一种方法:直接在Page或frame加载页面 Click here 第二种方法:调用系统浏览器加载指定页面 Click here privatevoid Hyperlink_RequestNavigate(object sender, RequestNavigateEventArgs e){ Process.Start(new ProcessStartInfo(e.Uri.AbsoluteUri)); e.Handled =true;} 阅读全文