//デリゲート KeyPress +=new KeyPressEventHandler(CustmTextBox_NextControl_KeyPress); #region Enterキーや矢印によるコントロールの移動 [Category("コントロールの移動用キー"), Description("keycodeを[]で囲い入力して下さい。), DefaultValue("")] private Keys [] nextcontrolkeys; public static int KeysCapacity; //テスト用static //インデクサ public Keys this[int index] { get { return nextcontrolkeys[index]; } set { nextcontrolkeys[index] = value; } } private void CustmTextBox_NextControl_KeyPress(object sender, KeyPressEventArgs e) { throw new NotImplementedException(); } #endregion