WPF页面向后端传参

WPF页面(前端)向后端传参

1、编写一个Button,绑定后端命令,并传递参数:

csharp 复制代码
<Button
	Width="100"
	Command="{Binding SendCommand}"
	CommandParameter="{Binding ElementName=SendMessage, Path=Text}"
	 Content="Send" />

2、在ViewModel.cs中编写后端处理代码:

csharp 复制代码
public PortsViewModel()
{
	SendCommand = new DelegateCommand<string>(Test);
}
public DelegateCommand<string> SendCommand { get; set; }
public void Test()
{
	MessageBox.Show(BaudRate);
}

通过DelegateCommand<T>来进行参数传递

相关推荐
明耀7 分钟前
WPF 设置平均布局 如果隐藏的话,能够自动扩展
wpf
晚安苏州13 小时前
WPF DataTemplate 数据模板
wpf
甜甜不吃芥末1 天前
WPF依赖属性详解
wpf
Hat_man_2 天前
WPF制作图片闪烁的自定义控件
wpf
晚安苏州3 天前
WPF Binding 绑定
wpf·wpf binding·wpf 绑定
wangnaisheng3 天前
【WPF】RenderTargetBitmap的使用
wpf
dotent·4 天前
WPF 完美解决改变指示灯的颜色
wpf
orangapple5 天前
WPF 用Vlc.DotNet.Wpf实现视频播放、停止、暂停功能
wpf·音视频
ysdysyn5 天前
wpf mvvm 数据绑定数据(按钮文字表头都可以),根据长度进行换行,并把换行的文字居中
c#·wpf·mvvm
orangapple5 天前
WPF 使用LibVLCSharp.WPF实现视频播放、停止、暂停功能
wpf