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

13 lines
674 B
XML

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml">
<Window.Resources>
<Binding x:Key="TaxBinding" Path="Invoice.Tax" Converter="{StaticResource TaxConverter}" />
</Window.Resources>
<StackPanel x:Name="RootPanel">
<TextBlock x:Name="UserText" Text="{Binding User.Name}" />
<TextBlock x:Name="TotalText" Text="{Binding Path=Order.Total, Converter={StaticResource MoneyConverter}}" />
<Button x:Name="SaveButton" Command="{Binding SaveCommand}" />
<TextBlock x:Name="ModeText" Text="{Binding Mode=TwoWay}" />
</StackPanel>
</Window>