C# WPF XAML 运行 XAML UserControl 加载命令
C# WPF XAML Run XAML Command on UserControl load
我正在尝试在加载 Usercontrol 时执行 XAML 命令。
原因是当用户从 Usercontrol A 导航到 Usercontrol B 时,我想更改我的应用程序的主题。我正在使用 Firstfoor ModernUI。
我要执行的代码:
Command="mui:LinkCommands.NavigateLink"
CommandParameter="cmd://settheme|/NLauncher;component/designs/ModernUI.BO2ii.xaml"
通常您使用按钮执行代码,但用户使用 ModernUI 中包含的 TabControl 进行导航。
确保你有
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
在您的 <UserControl>
标签中
那就用这段代码
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding YourCommand}" CommandParameter = {Binding YourParameter} />
</i:EventTrigger>
</i:Interaction.Triggers>
您需要将对 System.Windows.Interactivity
的引用添加到您的项目
编辑: 固定事件名称加载 -> 已加载
刚刚参考 Lionel Pire 的上述回答代码添加了完整的 XAML 代码。
<UserControl x:Class="Test.MyClass"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
>
<Grid Name="mygrid">
</Grid>
<!--Use this below the grid in case any control is passed in command parameter-->
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding myCommand}"
CommandParameter = "{Binding ElementName=mygrid}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</UserControl>
XAML Interactions\Interactivity 的最新软件包现已发布为 Microsoft.Xaml.Behaviors.Wpf
通过 NuGet 包管理器安装它:
Install-Package Microsoft.Xaml.Behaviors.Wpf
示例用法:
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
<Border>
<behaviors:Interaction.Triggers>
<behaviors:EventTrigger EventName="Loaded">
<behaviors:InvokeCommandAction Command="{Binding MyCommand}"/>
</behaviors:EventTrigger>
</behaviors:Interaction.Triggers>
</Border>
我正在尝试在加载 Usercontrol 时执行 XAML 命令。 原因是当用户从 Usercontrol A 导航到 Usercontrol B 时,我想更改我的应用程序的主题。我正在使用 Firstfoor ModernUI。
我要执行的代码:
Command="mui:LinkCommands.NavigateLink"
CommandParameter="cmd://settheme|/NLauncher;component/designs/ModernUI.BO2ii.xaml"
通常您使用按钮执行代码,但用户使用 ModernUI 中包含的 TabControl 进行导航。
确保你有
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
在您的 <UserControl>
标签中
那就用这段代码
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding YourCommand}" CommandParameter = {Binding YourParameter} />
</i:EventTrigger>
</i:Interaction.Triggers>
您需要将对 System.Windows.Interactivity
的引用添加到您的项目
编辑: 固定事件名称加载 -> 已加载
刚刚参考 Lionel Pire 的上述回答代码添加了完整的 XAML 代码。
<UserControl x:Class="Test.MyClass"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:i="http://schemas.microsoft.com/expression/2010/interactivity"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
>
<Grid Name="mygrid">
</Grid>
<!--Use this below the grid in case any control is passed in command parameter-->
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding myCommand}"
CommandParameter = "{Binding ElementName=mygrid}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</UserControl>
XAML Interactions\Interactivity 的最新软件包现已发布为 Microsoft.Xaml.Behaviors.Wpf
通过 NuGet 包管理器安装它:
Install-Package Microsoft.Xaml.Behaviors.Wpf
示例用法:
xmlns:behaviors="http://schemas.microsoft.com/xaml/behaviors"
<Border>
<behaviors:Interaction.Triggers>
<behaviors:EventTrigger EventName="Loaded">
<behaviors:InvokeCommandAction Command="{Binding MyCommand}"/>
</behaviors:EventTrigger>
</behaviors:Interaction.Triggers>
</Border>