| サブディスプレイが右側ですよね。
最初のは
> BitsPerPixel : 32 > Bounds : {X=0,Y=0,Width=1920,Height=1080} > DeviceName : \\.\DISPLAY1 > Primary : True > WorkingArea : {X=0,Y=0,Width=1920,Height=1032} > > BitsPerPixel : 32 > Bounds : {X=1920,Y=0,Width=1440,Height=2560} > DeviceName : \\.\DISPLAY2 > Primary : False > WorkingArea : {X=1920,Y=0,Width=1440,Height=2512}
で、メインの Width=1920 の右側にサブウィンドウがあるので サブの開始は X=1920
次のは
> BitsPerPixel : 32 > Bounds : {X=0,Y=0,Width=1536,Height=864} > DeviceName : \\.\DISPLAY1 > Primary : True > WorkingArea : {X=0,Y=0,Width=1536,Height=816} > > BitsPerPixel : 32 > Bounds : {X=1536,Y=0,Width=1440,Height=2560} > DeviceName : \\.\DISPLAY2 > Primary : False > WorkingArea : {X=1536,Y=0,Width=1440,Height=2512}
メインの Width=1536 の右側にサブウィンドウがあるので サブの開始は X=1536
と言うことでは?
サブが左にある場合は、サブの Width 分を差し引かないと いけないけれど。
|