我正在使用silverlight。我有問題,在簡單的Silverlight頁面上添加了「ComboBox」。但ComboBox沒有事件。ComboBox Event not Comming
1
A
回答
0
我的猜測是您已經在XAML中添加了一個ComboBox元素,並且正在代碼後面查找SelectionChanged事件。
如果是的話,試試這個:
添加的SelectionChanged屬性的組合框是這樣的:
<ComboBox SelectionChanged="ComboBox_SelectionChanged">
</ComboBox>
然後進入你的代碼隱藏(F7如果您在XAML視圖)和裏面添加以下你的頁面類:
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{
}
這應該讓你開始。過去,我需要一些時間來完成一些初學者完整的Silverlight教程 - 這應該有助於熟悉Visual Studio和Silverlgiht應用程序的結構。
+0
在屬性窗口中沒有「事件」動作! – Rahul
+0
爲什麼屬性窗口很重要?如果您的問題非常嚴重,您確實需要發佈更多信息。如果你只想得到一個選擇更改事件觸發 - 然後只是通過我上面的答案中的步驟,它應該工作正常。 –
相關問題
- 1. WPF ComboBox SelectionChanged event to command not firing
- 2. sourceupdated event not firing
- 3. ComboBoxItem MouseEnter event not firing
- 4. combobox databinding selectedvalue event
- 5. jquery change event not firing?
- 6. 「SpeechHypothesized event not raised」
- 7. MouseDown event not fireing
- 8. text_changed event not working
- 9. onmouseup event not firing
- 10. onClick event not triggered
- 11. listenTo not firing event
- 12. ondrop event not firing
- 13. onChange event not trigerred
- 14. onblur event not firing
- 15. SubreportProcessing Event not Firing
- 16. CheckedChanged event not firing
- 17. fileAdded-Event not fired
- 18. selectedindexchanged event not firing
- 19. workbook_beforesave event not firing
- 20. select event not working
- 21. Keydown Event not firing
- 22. .on()event not firing
- 23. MenuItemClick Event Not firing
- 24. javafx combobox contextmenu not diplayed
- 25. ASP.NET Session_End event not firing
- 26. ng-click event not working
- 27. Silverlight MouseLeftButtonDown event not firing
- 28. Socket.io connect event not firing
- 29. Reactjs onScroll event not responding
- 30. phonegap` volumedownbutton` event not fired
對不起,我不明白你的問題。 「ComboBox沒有事件」是什麼意思?你能爲你的Silverlight頁面提供一些源代碼和/或XAML嗎? –
-1:爲什麼在地球上這得到了加票?這僅僅是可以理解的,更不用說「有用和清晰」。 –
我只需將ComboBox拖放到我的Silverlight頁面上,但在屬性窗口中沒有「事件」操作。但是,當我在兒童窗口頁面上做同樣的事情時,在兒童窗口頁面的組合框上發生的事件...... – Rahul