Yazı Font Küçült Yazı Font Büyült

Ekran Çözünürlüğünü Almak

Bu örnekte Ekran Çözünürlüğünü alıp, MSN deki gibi formu timer nesnesinden faydalanarak, sağ  alt köşede aşağı doğru kaymasını sağlayacağız.
Formunuza 1 adet timer nesnesi ekleyin ve intervalini 10 yapın.

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;

namespace WindowsApplication1
{
    public partial class Form1 : Form
    {
        int k;
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Load(object sender, EventArgs e)
        {

            this.Size = new System.Drawing.Size(175, 150);

            int i, j;
            //Ekran Çözünürlük Boyutunu alıyoruz
            i=System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width;
            j=System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height;
           
            this.Text = i + "," + j;

            this.Location = new Point(System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width - this.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height - this.Height);
            timer1.Enabled = true;
            timer1.Interval = 10;
        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            k = k + 1;
            this.Location = new Point(System.Windows.Forms.Screen.PrimaryScreen.Bounds.Width - this.Width, System.Windows.Forms.Screen.PrimaryScreen.Bounds.Height - this.Height+k);
        }
    }
}

//Bir sonraki makalede görüşmek üzere. Bahadır