12.07.2015 Views

bu döküman kaan aslan tarafından c ve sistem ... - Kitabxana

bu döküman kaan aslan tarafından c ve sistem ... - Kitabxana

bu döküman kaan aslan tarafından c ve sistem ... - Kitabxana

SHOW MORE
SHOW LESS

Create successful ePaper yourself

Turn your PDF publications into a flip-book with our unique Google optimized e-Paper software.

class MyForm : Form{public MyForm(){this.Text = "Örnek Pencere";this.BackColor = System.Drawing.Color.Red;this.Location = new Point(300, 100);this.StartPosition = FormStartPosition.CenterScreen;}}//...}}WindowsDefaultLocation: Burada konumlandırma işletim <strong>sistem</strong>inin isteğine bırakılır fakatboyutlandırma yapılabilir. Bu default durumdur.Manual: Bu durumda konumlandırma <strong>ve</strong> boyutlandırma tamamen programcıya bırakılır. Yanipencereyi location property sine değer atayarak istediğimiz yerde görüntülemek için startpositionmanuele çekilmelidir.using System;using System.Windows.Forms;using System.Drawing;namespace CSD{class App{public static void Main(){Application.Run(new MyForm());}class MyForm : Form{public MyForm(){this.Text = "Örnek Pencere";this.BackColor = System.Drawing.Color.Red;this.Location = new Point(300, 100);this.StartPosition = FormStartPosition.Manual;}}//...}}19

Hooray! Your file is uploaded and ready to be published.

Saved successfully!

Ooh no, something went wrong!