visual c# ve c++ bir soru

ahmetkürkçü
25-03-2010, 18:10   |  #1  
ahmetkürkçü avatarı
OP Yıllanmış Üye
Teşekkür Sayısı: 0
809 mesaj
Kayıt Tarihi:Kayıt: May 2009

private void Form1_Load(object sender, EventArgs e)
        {
            radioButton1.Text = "";
            radioButton1.Width = 20;
            timer1.Interval = 10;
            timer1.Enabled = true;


        }
        int sx = 10, sy = 10;
        private void timer1_Tick(object sender, EventArgs e)
        {
            if (radioButton1.Top <= 0 || radioButton1.Bottom >= ClientSize.Height)
                sy = -sy;
            if (radioButton1.Left <= 0 || radioButton1.Right >= ClientSize.Width)
                sx = -sx;
            radioButton1.Left += sx;
            radioButton1.Top += sy;
        }
c#da yazılan bu prıgramın c++ daki karşılığı şu değil mi arkadaşlar

private: System::Void Form1_Load(System::Object^  sender, System::EventArgs^  e)

{

radioButton1->Text="";

radioButton1->Width=20;

timer1->Start();

timer1->Interval=50;

}

int sx = 10, sy = 10;

private: System::Void timer1_Tick(System::Object^  sender, System::EventArgs^  e) 

{

if(radioButton1->Top <= 0|||| radioButton1->Bottom >= ClientSize->Height)

{

sy = -sy;

}

if (radioButton1->Left <= 0|| radioButton1->Right >= ClientSize->Width)

{
                                 sx = -sx;

}

radioButton1->Left += sx;
                                 radioButton1->Top += sy;

 

}
hata veriyo c++ta c#ta hata yok arkadaşlar hata nerde olabilir yardımlarınızı bekliyorum