溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

基本控件CheckBox控件

發(fā)布時間:2020-07-10 09:25:01 來源:網絡 閱讀:330 作者:windows_phone 欄目:開發(fā)技術

 選擇框控件,為用戶提供選項。

 可單選或多選。

 CheckBox有選中、為選中、中間態(tài)三種狀態(tài),要是中間態(tài)有效,需要設置IsThreeState="true".

  1. <CheckBox  IsThreeState="True" Checked="checkBox1_Checked" Unchecked="checkBox1_Unchecked"  Content="" Height="72" HorizontalAlignment="Left" Margin="161,172,0,0" Name="checkBox1" VerticalAlignment="Top" > 
  2.             <CheckBox.RenderTransform> 
  3.                 <CompositeTransform ScaleX="1.5" ScaleY="1.5"></CompositeTransform> 
  4.             </CheckBox.RenderTransform> 
  5.         </CheckBox> 

 C#代碼:

  1. private void checkBox1_Checked(object sender, RoutedEventArgs e) 
  2.         { 
  3.             if (checkBox1.IsChecked == true) 
  4.                 this.textBlock1.Text = "選中"
  5.         } 
  6.  
  7.         private void checkBox1_Unchecked(object sender, RoutedEventArgs e) 
  8.         { 
  9.             if (checkBox1.IsChecked == false) 
  10.                 this.textBlock1.Text = "未選中"
  11.         } 

 效果圖為: 

 基本控件CheckBox控件 

 基本控件CheckBox控件

 基本控件CheckBox控件

 

 

向AI問一下細節(jié)

免責聲明:本站發(fā)布的內容(圖片、視頻和文字)以原創(chuàng)、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI