Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个图像按钮,当我点击它时我想改变它的大小。我正在使用 dot42,您可以在其中使用 C# 开发 android 应用程序
我试过这个,但没有奏效:
button1.Click += delegate { button1.Height = 25; };
所以你需要像这样注册事件:
button1.Click += new EventHandler(button1_Click);
或者
button1.Click += button1_Click;
而不是在你的函数 button1_click 中写下你想要做的任何改变大小的事情就像:
void button1_Click(object sender, EventArgs e) { button1.Height = 45; }