C#プチリファレンス

C# Button(System.Windows.Forms.Button)

Buttonについてです。

C# ボタン

ボタンの文字をセット、取得する

例)ボタン(button1)に値("hoge")を表示する
button1.Text = "hoge";
例)ボタン(button1)に表示されている文字を取得する
string str = button1.Text;

Buttonのプロパティ

【Buttonのプロパティ】
プロパティ設定値
(太字は既定値)
意味
デザイン
(Name)コントロール名を指定する
GenerateMember**
LockedTrue/False*
ModifiersPublic
Protected
Protected Internal
Internal
Private
*
フォーカス
CausesValidationTrue/False*
ユーザー補助
AccessibleDescription**
AccessibleName**
AccessibleRoleDefault
***
*
動作
AllowDropTrue/False*
AutoEllipsisTrue/False*
ContextMenuStrip**
DialogResultNone
OK
Cancel
Abort
Retry
Ignore
Yes
No
*
EnabledTrue/False活性状態を指定する
TabIndexタブ移動順を指定する
TabStopTrue/Falseタブ移動でのフォーカスの可否を指定する
UseCompatibleTextRenderingTrue/False*
VisibleTrue/Falseコントロールの表示/非表示を指定する
配置
AnchorTop,Left*
AutoSizeTrue/False*
AutoSizeModeGrowOnly
GrowAndShrink
*
DockNone
***
*
Locationx,y表示位置をX座標、Y座標で指定する
Margin**
MaximumSize**
MinimumSize**
Padding**
Sizew,hコントロールの大きさをWidth,Heightで指定する
表示
BackColorControl背景色を指定する
BackgroundImage**
BackgroundImageLayoutNone
Tile
Center
Stretch
Zoom
*
CursorAppStarting
Arrow
Cross
Default
IBeam
No
SizeAll
SizeNESW
マウスカーソルの形状を指定する
FlatAppearance**
FlatStyleFlat
Popup
Standard
System
*
FontMS UI Gothic, 9ptフォントとサイズを指定する
ForeColorControlText文字色を指定する
Image表示する画像を指定する
ImageAlignMiddleCenter画像の表示位置を指定する
※画像が指定された場合のみ有効
ImageIndex(なし)*
ImageKey(なし)*
ImageList(なし)*
RightToLeftNo
Yes
Inherit
Textbutton1表示する文字を指定する
TextAlignTopLeft
TopMiddle
TopRight
MiddleLeft
MiddleCenter
MiddleRight
BottomLeft
BottomCenter
BottomRight
文字の表示位置を指定する
TextImageRelationOverlay
ImageAboveText
TextAboveImage
ImageBeforeText
TextBeforeImage
*
UseMnemonicTrue/False*
UseVisualStyleBackColorTrue/False*
UseWaitCursorTrue/False*
ToTop