我正在开发一个使用扩展 WPF 工具包中的向导类的 WPF 应用程序。我已经设置了主页,但我想更改按钮大小。
这是我的 XAML:
<Window x:Class="wizard.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="http://schemas.xceed.com/wpf/xaml/toolkit"
Title="MainWindow" Height="350" Width="525">
<Grid>
<xctk:Wizard FinishButtonClosesWindow="True" Next="Wizard_Next" x:Name="Wizard">
...
</xctk:Wizard>
</Grid>
</Window>
正如您在窗口底部看到的那样,有三个按钮。我想改变它们的大小。我浏览了 Xceed 的 WPF 工具包的文档,但我在任何地方都找不到按钮的源代码。
任何帮助,将不胜感激!