摘要:
C# 代码 public partial class MainWindow : Window { List<Student> students; public MainWindow() { InitializeComponent(); students = new List<Student>(); 阅读全文
摘要:
链接 https://www.iconfont.cn/search/index?searchType=icon&q svg下载到本地,然后用文本文件打开就行了,十分方便。 部分样式 阅读全文
摘要:
1.BlurEffect 模糊效果 通过设置Radius属性的值可以改变模糊程度,Radius默认值为5 <Button Content="btn2" Width="100" Height="20"> <Button.Effect> <BlurEffect Radius="3"/> </Button 阅读全文
摘要:
listbox <ListBox AlternationCount="2" > <ListBox.Resources> <Style TargetType="ListBoxItem"> <Style.Triggers> <Trigger Property="ItemsControl.Alternat 阅读全文
摘要:
xaml: <Grid> <DataGrid AutoGenerateColumns="False" Height="148" HorizontalAlignment="Left" Margin="27,21,0,0" Name="dataGrid1" VerticalAlignment="Top" 阅读全文
摘要:
C# 数据: namespace _1.DataGridStudy { /// <summary> /// MainWindow.xaml 的交互逻辑 /// </summary> public partial class MainWindow : Window { ObservableCollec 阅读全文
摘要:
1.简单工厂模式 using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace _1.简单工厂模式 { cla 阅读全文
摘要:
管道通信包括匿名管道和命名管道,匿名管道只能用在父子进程之间,命名管道可以用在两个进程甚至跨服务器通信。 服务器端代码: private void button1_Click(object sender, EventArgs e) { try { using (NamedPipeClientStre 阅读全文
摘要:
1.自定义一个ValicationRule: public class RangeValidationRule:ValidationRule { public override ValidationResult Validate(object value, CultureInfo cultureIn 阅读全文
摘要:
新建一个主窗体一个Module,配置完成 原来加载方法是重写ConfigureModuleCatalog protected override void ConfigureModuleCatalog(IModuleCatalog moduleCatalog) { moduleCatalog.AddM 阅读全文