C# System.NotImplementedException Metot Uygulanmadı Hatası

ectuall

Yoctopat
Katılım
17 Şubat 2022
Mesajlar
2
Daha fazla  
Cinsiyet
Erkek
LoginScreen.cs
Ekran görüntüsü 2022-02-17 162934.png


Kod:

Kod:
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace LodosTR
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void panel2_Paint(object sender, PaintEventArgs e)
        {

        }

        private void timer1_Tick(object sender, EventArgs e)
        {
            panel2.Width += 1;
            if (panel2.Width >= 500)
            {
                timer1.Stop();
                LoginScreen m = new LoginScreen();
                m.show();
            }
        }

        private void Form1_Load(object sender, EventArgs e)
        {

        }

        private void label1_Click(object sender, EventArgs e)
        {

        }

        private void panel1_Paint(object sender, PaintEventArgs e)
        {

        }
    }
}
 

Yeni konular

Geri
Yukarı