using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
namespace psunuti_tlačítka
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void checkBox1_CheckedChanged(object sender, EventArgs e)
{
if (checkBox1.Checked == true)
{
int ix = 74;
int i = 1;
for (i = 1; i < 100; i++)
{
button1.Visible = false;
button1.Location.X = 1;
button1.Refresh();
}
textBox1.Visible = true;
}
}
}
}
Tady je jednoduchý kod jak posunout tlačítko o 100 pixelu doprava a zobrazení textboxu...nejde mi to spustit hlásí to chybu :Cannot modify return value of System.Windows.Form.Control.Location'because its not variable....
Nevim jestli mám něco změnit v properties tlačítka Díky za radu