浏览代码

测试

Lishi
xxe 2 年前
父节点
当前提交
7c6f0c1700
共有 1 个文件被更改,包括 3 次插入10 次删除
  1. +3
    -10
      HKCardOUT/ViewModels/RootViewModel.cs

+ 3
- 10
HKCardOUT/ViewModels/RootViewModel.cs 查看文件

@@ -173,21 +173,14 @@ namespace HKCardOUT.ViewModels
{
try
{
//var SC = System.Windows.Forms.Screen.AllScreens.Count();
//while (SC<3)
//{
// SC = System.Windows.Forms.Screen.AllScreens.Count();
// Thread.Sleep(1000);
//}
for (int i = 0; i < 3; i++)
{
var win = new AdWindow(Ad[i].Ad, i);
win.DataContext = new AdWindowViewModel();
//var rectangle = System.Windows.Forms.Screen.AllScreens[i].WorkingArea;
win.Height = 1080;//rectangle.Height;
win.Width = 1920;//rectangle.Width;
win.Height = 1080;
win.Width = 1920;
win.Top = 0;
win.Left = i * 1920 * -1;// rectangle.Left;
win.Left = i * 1920;
win.Owner = this.Main;
win.Show();
}


正在加载...
取消
保存