摘要: 1 public class Program 2 { 3 #region 禁用控制台黑窗口的关闭按钮 part1 4 5 private const int MF_BYCOMMAND = 0x00000000; 6 public const int SC_CLOSE = 0xF060; 7 8 [D 阅读全文
posted @ 2020-04-28 17:05 橘子香气 阅读(1012) 评论(0) 推荐(0) 编辑
摘要: 第2-6行 1 <ListView Name="HumidifyEventLog" Style="{StaticResource ListViewStyle}" ItemContainerStyle="{StaticResource ResourceKey=ListViewItemStyle}"> 阅读全文
posted @ 2020-04-28 16:57 橘子香气 阅读(1107) 评论(1) 推荐(0) 编辑
摘要: 将ListView包裹在一个父Grid中 写一个与ListView平行的Grid,设置该Grid的列数与ListView中GridView的列数相同,将该Grid各列设置列宽按比例分配 将ListView中GridView的各列的Width绑定上述Grid的ActualWidth 这样,通过设置上述 阅读全文
posted @ 2020-04-28 16:55 橘子香气 阅读(3449) 评论(0) 推荐(1) 编辑
摘要: 在Program类中的Main方法里: 1 public class Program 2 { 3 static void Main(string[] args) 4 { 5 Console.WriteLine("是否要结束程序,取消请输入'No', 确认请输入密码:"); 6 7 string pa 阅读全文
posted @ 2020-04-28 16:46 橘子香气 阅读(990) 评论(0) 推荐(0) 编辑