我有一個TextBox
綁定到string
屬性ViewModel
,我有一個Button
與Command
。現在我想通過屬性本身如果可能作爲CommandParameter
。 這可能嗎?Xaml通過綁定屬性到命令
的XAML部分:
<TextBox Text="{Binding FilePath, UpdateSourceTrigger=PropertyChanged}"/>
<Button Command="{Binding BrowseCommand}" CommandParameter="{Binding FilePath}" Content="..." />
而且Command
看起來是這樣,但我有什麼類型把RelayCommand<?>
,而不是什麼,我需要的CommandParameter
結合?
public ICommand BrowseCommand => this.browseCommand ?? (this.browseCommand = new RelayCommand<?>(this.Browse));
filepath是字符串類型我承擔? – WBuck
是的,我想通過屬性本身,而不是它的價值(如果可能的話) –
這是不可能的。 {綁定}解析*值*。 – mm8