Exemplo n.º 1
0
        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            e.Graphics.Clear(Color.White);
            BallDoc.Draw(e.Graphics);

            if (Filename != string.Empty)
            {
                this.Text = $"Погоди ги топчињата | {Filename.Substring(Filename.LastIndexOf(@"\") + 1)}";
            }
            else
            {
                this.Text = "Погоди ги топчињата";
            }
        }
Exemplo n.º 2
0
 private void Form1_Paint(object sender, PaintEventArgs e)
 {
     doc.Draw(e.Graphics);
 }