Reputation: 969
I am working on a WPF application that uses the Wizard class from the Extended WPF Toolkit. I have the main page set up, but I would like to change the button sizes.
Here is my 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>
As you can see at the bottom of the window, there are three buttons. I would like to change the size of them. I've gone through the documentation for Xceed's WPF Toolkit, but I can't find the source code for the buttons anywhere.
Any help would be appreciated!
Upvotes: 0
Views: 324