相关文章推荐
考研的葡萄  ·  历史沿革·  1 年前    · 
刀枪不入的小蝌蚪  ·  演出、讲座·  1 年前    · 
千杯不醉的剪刀  ·  求Photoshop ...·  1 年前    · 
热情的登山鞋  ·  沙坡鸣钟- 宁夏·  1 年前    · 

无法去掉最后一行默认列Title格式

第二种方式 datagrid 属性 HorizontalAlignment = “Left”

右侧滚动条不会显示在最右侧,吸附在最后一列

Timer定时器

timerMonitor(null,null);
System.Timers.Timer timer = new System.Timers.Timer();
timer.Enabled = true ;     //一直开启
timer.Interval = 60000 ;  //60000毫秒 =1分钟
timer.Start();
timer.Elapsed += new System.Timers.ElapsedEventHandler(timerMonitor);
public void timerMonitor(object source , ElapsedEventArgs e)
    Dispatcher.Invoke((Action)(() =>
                                 //定时执行