วิธีการกำหนด position ของ From ให้ ตรึงตำแหน่งของ app ตามท่ี่เรากำหนด ครับผม
หาขนาดของ screen ให้ได้ก่อน แล้วอยากทำอะไรก็ทำ
Code (C#)
int deskHeight = Screen.PrimaryScreen.Bounds.Height;
Screen.PrimaryScreen.Bounds.Width deskWidth = default(Screen.PrimaryScreen.Bounds.Width);
MessageBox.Show("Your screen resolution is " + deskWidth + "x" + deskHeight);
Date :
2010-09-05 20:34:01
By :
tungman
ขอบคุณมากครับ
แต่ผมเอาโค๊ดไปรันแล้วมัน Error นะครับ เป็นงงมากมาย
ผมวางผิดที่หรือเปล่า มือใหม่จริงๆครับ
พอผมรู้ ขนาดของ หน้าจอแล้ว แล้วผมต้องทำอย่างไรต่อครับขอตัวอย่างซักหน่อยได้หรือไม่ครับ
สมมุติ ผมรู้ขนาดแกน X,Y= 1000,2000
ผมต้งการให้ Position x= 500 y=300 จะต้องเขียนโค๊๋ด C# อย่างไรครับ ขอตัวอย่างหน่อยนะครับ
ขอบคุณมากๆครับ
Date :
2010-09-05 21:15:49
By :
martman26
โทษทีครับ โค้ดผิด
Code (C#)
int deskHeight = Screen.PrimaryScreen.Bounds.Height;
int deskWidth = Screen.PrimaryScreen.Bounds.Width;
MessageBox.Show("Your screen resolution is " + deskWidth.ToString() + "x" + deskHeight.ToString());
Date :
2010-09-05 21:19:57
By :
tungman
Load balance : Server 04