2013-10-09 85 views
0

請任何人都可以告訴我如何製作combobox,其中包含項目作爲標籤控件,並且每個標籤控件的左側都有刪除按鈕。如果點擊刪除按鈕,這個項目將被刪除並添加到列表框中。在wpf中創建用戶控件

我試過這個,但我無法做到這一點。

回答

0

*以下代碼完全相同。 *

<ComboBox Width="100" Height="23"> 
     <ComboBoxItem> 
      <StackPanel Orientation="Horizontal"> 
       <Button Content="Delete" Click="Button_Click" Name="btn"/> 
       <Label Foreground="Red">Red</Label> 
      </StackPanel> 
     </ComboBoxItem> 
</ComboBox>