|
分類:[C#]
Visual studio2013のC#で以下のようなコードを書いたのですが、MessageBoxが出現しませんでした。
event処理について知識が甘いため必要な処理が抜けているのであれば、教えていただけると助かります。
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 WindowsFormsApplication11
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Resize(object sender, System.EventArgs e)
{
MessageBox.Show("Resize");
}
}
}
|