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 = "Погоди ги топчињата"; } }
private void Form1_Paint(object sender, PaintEventArgs e) { doc.Draw(e.Graphics); }