Files
wehub-resource-sync d88fd01084
CI / test (3.10) (push) Failing after 1s
CI / test (3.12) (push) Failing after 0s
CI / skillgen-check (push) Failing after 0s
CI / security-scan (push) Failing after 0s
chore: import upstream snapshot with attribution
2026-07-13 12:09:14 +08:00

20 lines
829 B
XML

<UserControl x:Class="Demo.ToolkitView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:i="http://schemas.microsoft.com/xaml/behaviors"
xmlns:vm="clr-namespace:Demo.ViewModels">
<UserControl.DataContext>
<vm:ToolkitViewModel />
</UserControl.DataContext>
<Grid>
<TextBlock Text="{Binding UserName}" />
<TextBlock Text="{Binding Email}" />
<i:Interaction.Triggers>
<i:EventTrigger EventName="Loaded">
<i:InvokeCommandAction Command="{Binding SaveCommand}" />
<i:InvokeCommandAction Command="{Binding RefreshCommand}" />
</i:EventTrigger>
</i:Interaction.Triggers>
</Grid>
</UserControl>