c# – 如何在XAML中调用带参数的函数?

我正在使用Blend(我对它很新)来创建XAML.我有一行代码调用下面的函数writeC:

<Button x:Name="key_c" Content="c" HorizontalAlignment="Left" Height="60" 
    Margin="243,188.667,0,0" VerticalAlignment="Top" Width="60" FontWeight="Bold"
    FontFamily="Century Gothic" FontSize="21.333" Foreground="Black" 
    Click="writeC">

这很好用.但是,我想将其更改为使用参数“a”和“A”调用函数WriteChar,以便它调用以下C#函数:

private void writeChar(string myCharCaps, string myCharLower)

我如何在XAML中写这个?

解决方法:

您的点击处理程序需要遵守事件处理程序签名.如果你想让这个处理程序成为WriteChar的简单包装器,那很好.更多信息:http://msdn.microsoft.com/en-us/library/bb531289(v=vs.90).aspx

上一篇:Delphi 10.3.3无法生成安卓Android APK错误:Troubleshooting: Cannot Deploy an Application for Android


下一篇:【WPF】两则动画效果