我可以在代码隐藏中轻松完成此操作但不想破坏MVVM
模式。
我的视图中有一个RichTextBox
和一个“保存”按钮。我想将RichTextBox的内容保存到Save按钮上的文件中。
我编写了一个委托类,它希望一个方法返回void并且有一个对象参数。我这样做是因为我无法使用System.Action委托。
class BtnCommandParameterised : ICommand
{
public delegate void ActionParameterised(object rtb);
private ActionParameterised _actionParameterised;
public object _object;
public BtnCommandParameterised(ActionParameterised BtnCommandParameterisedActionParameterised)
{
_actionParameterised = BtnCommandParameterisedActionParameterised;
}
public bool CanExecute(object parameter)
{
return true;
}
public void Execute(object parameter)
{
_actionParameterised.Invoke(_object);
}
public event EventHandler CanExecuteChanged;
}
然后在我的ViewModel中,我有一个从构造函数调用的InitialiseBtnCommands()
方法。这会初始化命令:
private void InitialiseBtnCommands()
{
ReturnTextAsStringCommand = new BtnCommandParameterised(ReturnTextAsStringCommandAction);
}
这会调用我的方法来保存文件。
private void ReturnTextAsStringCommandAction(object Document)
{
TextRange range;
FileStream fileStream;
range = new TextRange(((FlowDocument)Document).ContentStart,
((FlowDocument)Document).ContentEnd);
fileStream = new FileStream(FileName, FileMode.Create);
range.Save(fileStream, DataFormats.Text);
fileStream.Close();
Xceed.Wpf.Toolkit.MessageBox.Show("Text File Saved");
}
最后,在View XAML中,这是我的绑定:
<Grid Name="MainGrid" DataContext="{StaticResource EditorViewModel}">
<xctk:RichTextBox SpellCheck.IsEnabled="True" HorizontalAlignment="Center" Margin="206,166,206,60" Name="richTextBoxArticleBody" AcceptsTab="True" BorderBrush="Silver" BorderThickness="1" VerticalAlignment="Center" Height="306" Width="600" FontFamily="Arial"/>
<Button Command="{Binding ReturnTextAsStringCommand}" CommandParameter="{Binding ElementName=richTextBoxArticleBody, Path=Document}" Content="Save Article Text" Height="23" HorizontalAlignment="Left" Margin="703,478,0,0" Name="button1" VerticalAlignment="Top" Width="103" />
</Grid>
正在调用该命令并调用我的方法但是没有任何内容传递给ReturnTextAsStringCommandAction
方法?
我是MVVM的新手,我们会发现一些事情,有点令人困惑。
答案 0 :(得分:1)
您将_object传递给invoke方法。 我认为你的意思是传递参数。
public void Execute(object parameter)
{
_actionParameterised.Invoke(parameter);
}