C#中窗口的关闭和拉伸功能代码问题
毕业要找工作了,面试官要我用C#实现窗口的关闭功能,还要使窗口能拉伸(不能是自带的功能)。这么简单的东西,我不会做啊,因为以前从没有学过,没有用过,现在烦死了。大哥们救救我啊,明天就是最后期限了。在线等啊。最好是能够给我代码吧,给我方法的话,我也不会做的,只需要窗口关闭功能和拉伸功能的代码就可以了
没学过怎么会去找这样的工作啊???
控件随窗体变化的.
double bwidth, bheight, ewidth, eheight;
private void Form1_ResizeBegin(object sender, EventArgs e)
{
bwidth = this.Width;
bheight = this.Height;
}
private void Form1_ResizeEnd(object sender, EventArgs e)
{
ewidth = this.Width;
eheight = this.Height;
button1.Left = (int)(button1.Left * (ewidth / bwidth));
button1.Width = (int)(button1.Width * (ewidth / bwidth));
button1.Top = (int)(button1.Top * (eheight / bheight));
button1.Height = (int)(button1.Height * (eheight / bheight));
button1.Show();
}
做个按钮或菜单关闭
Application.Exit();
this.Dispose();