我正在使用 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">
这工作正常。但是,我想将其更改为WriteChar
使用参数"a"
和调用函数"A"
,以便它调用以下 C# 函数:
private void writeChar(string myCharCaps, string myCharLower)
我将如何在 XAML 中编写它?