gpt4 book ai didi

c# - WPF 工具包向导从我的代码中的页面访问控制

转载 作者:行者123 更新时间:2023-11-30 12:59:08 29 4
gpt4 key购买 nike

在我的 XAML 文件中,我有一个这样定义的向导

<Window.Resources>
<xctk:Wizard x:Key="wizard" FinishButtonClosesWindow="True" HelpButtonVisibility="Hidden">

然后,我有 2 或 3 个页面和一些控件来请求用户输入。

我想禁用下一步按钮,直到文本输入被填充,我想在向导完成后访问字段中的信息。

我尝试设置我的输入控件的 x:Name 属性,然后可能会对它们做一些事情,但无论如何我都无法在我的代码中访问它们。

最佳答案

在 WizardPage 中,您需要将 CanSelectNextPage 属性绑定(bind)到代码隐藏中的 bool 属性

例子:

<Window x:Class="WpfApplication1.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:xctk="clr-namespace:Xceed.Wpf.Toolkit;assembly=Xceed.Wpf.Toolkit"
Title="MainWindow" Height="350" Width="525" x:Name="Window">
<Window.Resources>
<xctk:Wizard x:Key="Wizard" FinishButtonClosesWindow="True" HelpButtonVisibility="Hidden">
<xctk:WizardPage CanSelectNextPage="{Binding ElementName=Window, Path=CanSelectNext}">
<StackPanel>
<Label Content="Label1"/>
<Button Content="Click Me" Click="ButtonBase_OnClick"/>
</StackPanel>
</xctk:WizardPage>
<xctk:WizardPage>
<Label Content="Label2"/>
</xctk:WizardPage>W
</xctk:Wizard>
</Window.Resources>
<Grid>
<ContentPresenter Content="{StaticResource Wizard}"/>
</Grid>
</Window>

代码隐藏:

public partial class MainWindow : INotifyPropertyChanged
{

...

private void ButtonBase_OnClick(object sender, RoutedEventArgs e)
{
CanSelectNext = true;
OnPropertyChanged("CanSelect");
}

public bool CanSelectNext { set; get; }

public event PropertyChangedEventHandler PropertyChanged;

[NotifyPropertyChangedInvocator]
protected virtual void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
PropertyChangedEventHandler handler = PropertyChanged;
if (handler != null) handler(this, new PropertyChangedEventArgs(propertyName));
}

...
}

关于c# - WPF 工具包向导从我的代码中的页面访问控制,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26963975/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com