您好,登錄后才能下訂單哦!
選擇框控件,為用戶提供選項。
可單選或多選。
CheckBox有選中、為選中、中間態三種狀態,要是中間態有效,需要設置IsThreeState="true".
- <CheckBox IsThreeState="True" Checked="checkBox1_Checked" Unchecked="checkBox1_Unchecked" Content="" Height="72" HorizontalAlignment="Left" Margin="161,172,0,0" Name="checkBox1" VerticalAlignment="Top" >
- <CheckBox.RenderTransform>
- <CompositeTransform ScaleX="1.5" ScaleY="1.5"></CompositeTransform>
- </CheckBox.RenderTransform>
- </CheckBox>
C#代碼:
- private void checkBox1_Checked(object sender, RoutedEventArgs e)
- {
- if (checkBox1.IsChecked == true)
- this.textBlock1.Text = "選中";
- }
- private void checkBox1_Unchecked(object sender, RoutedEventArgs e)
- {
- if (checkBox1.IsChecked == false)
- this.textBlock1.Text = "未選中";
- }
效果圖為:
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。