我在silverlight mvvm中有一個組合框。我需要爲組合框名稱'SelectionChanged'編寫事件。我在下面創建編碼,但它給出了一個錯誤..「在'InvokeCommandAction'類型中找不到屬性'命令'」在「InvokeCommandAction」類型中找不到屬性「命令」組合框
注意:我沒有使用Silverlight Light。我正在使用Silverlight5及其Silverlight應用程序。
<ComboBox x:Name="myComboBox" Width="150" ItemsSource="{Binding Items}" >
<ComboBox.ItemTemplate>
<DataTemplate>
<StackPanel>
<TextBlock Text="{Binding Name}"/>
</StackPanel>
</DataTemplate>
</ComboBox.ItemTemplate>
<i:Interaction.Triggers>
<i:EventTrigger EventName="SelectionChanged">
<i:InvokeCommandAction Command="{Binding LoadCommand}" CommandParameter="{Binding SelectedItem, ElementName=myComboBox}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</ComboBox>
這行錯誤來了。
<i:InvokeCommandAction Command="{Binding LoadCommand}" CommandParameter="{Binding SelectedItem, ElementName=myComboBox}" />
您正在使用哪種版本的Silverlight?這是一個Silverlight應用程序或WP7應用程序? –
我正在使用Silverlight 5 ..它的Silverlight應用程序。 –