5
我使用附加的行爲,允許DoubleClick事件在一個視圖模型被連接到一個命令,如下面的結合:附加的行爲和風格
<ListBox Style="{StaticResource MasterListBoxStyle}"
b:SelectionBehavior.DoubleClickCommand="{Binding EditCommand}"
>
我需要一個呈現中的多個列表框,所有這些都需要連接到EditCommand的DoubleClick。
我可以將這種行爲推到我的MasterListBoxStyle中嗎?怎麼樣?
乾杯,
Berryl
<Style x:Key="MasterListBoxStyle" TargetType="ListBox">
<Setter Property="ItemsSource" Value="{Binding MasterVm.AllDetailVms}" />
<Setter Property="ItemContainerStyle" Value="{StaticResource MasterListingRowStyle}" />
<Setter Property="IsSynchronizedWithCurrentItem" Value="True" />
<Setter Property="AlternationCount" Value="2" />
</Style>
我打算嘗試一下,然後我認爲自己「不太容易」: - ) – Berryl 2011-05-17 17:20:48