04 2013 档案
摘要:View Code <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:GEMS.Windows.Controls.CustomControls" xmlns:Themes="clr-namespace...
阅读全文
摘要:View Code public class Indicator : UserControl { public Indicator() { this.InitializeComponent(); } private void InitializeComponent() { Grid g = new Grid(); this.Content = g; List<Path> pathlist = new List<Path>(); ...
阅读全文
摘要:View Code <ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns:local="clr-namespace:MyWPFCustomControls" xmlns:Microsoft_Windows_Themes="clr-namespac...
阅读全文
摘要:View Code <Trigger Property="Validation.HasError" Value="True"> <Setter TargetName="Bd" Property="BorderBrush" Value="Red"/> </Trigger>View Code <Setter Property="Validation.ErrorTemplate"> <Setter.Value> <C
阅读全文