1
我正試圖動態綁定MenuItem
。動態綁定MenuItems
我有public List<string> LastOpenedFiles { get; set; }
是我的數據源。 我的命令,我嘗試運行是public void DoLogFileWork(string e)
<MenuItem Header="_Recent..."
ItemsSource="{Binding LastOpenedFiles}">
<MenuItem.ItemContainerStyle>
<Style TargetType="MenuItem">
<Setter Property="Header"
Value="What should be here"></Setter>
<Setter Property="Command"
Value="What should be here" />
<Setter Property="CommandParameter"
Value="What should be here" />
</Style>
</MenuItem.ItemContainerStyle>
</MenuItem>
我想從LastOpenedFiles
每個條目是我點擊它,才能進入我點擊的入賬價值DoLogFileWork
功能。
感謝您的協助。
感謝您的幫助,您真的很有幫助。 – 2013-04-21 19:22:26