選擇要註解掉的程式碼->點選註解選取行
或是用語法
<!--要註解掉的程式碼-->
跟一般C#的//不一樣喔
取消註解應該不用特意說明吧
選擇表單控制項,可以有多個選項選擇
<ListBox Grid.Row="1" Grid.Column="1" >
<ListBoxItem>項目1</ListBoxItem>
<ListBoxItem>項目2</ListBoxItem>
<ListBoxItem>項目3</ListBoxItem>
</ListBox>
但是如果Item太多會導致ListBox過長
或是想要節省空間使介面看起來更簡潔
那就會用到下面介紹的
下拉式選單控制項,語法跟Listbox差不多
IsEditable設定為True時,則可提供使用者手動輸入
<ComboBox Grid.Row="1" Grid.Column="1" Height="30" Width="100">
<ComboBoxItem>項目1</ComboBoxItem>
<ComboBoxItem>項目2</ComboBoxItem>
<ComboBoxItem>項目3</ComboBoxItem>
</ComboBox>
基本上ListBox或ComboBox都會跟Button搭配做使用