2026-03-21 23:28:41 +08:00
|
|
|
<Window x:Class="Ink_Canvas.FeedbackWindow"
|
|
|
|
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
|
|
|
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
|
|
|
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
|
|
|
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
|
|
|
|
xmlns:local="clr-namespace:Ink_Canvas"
|
|
|
|
|
xmlns:ui="http://schemas.inkore.net/lib/ui/wpf/modern"
|
|
|
|
|
xmlns:ikw="http://schemas.inkore.net/lib/ui/wpf"
|
2026-04-04 23:26:45 +08:00
|
|
|
xmlns:feedbackPages="clr-namespace:Ink_Canvas.Windows.FeedbackPages"
|
2026-03-21 23:28:41 +08:00
|
|
|
mc:Ignorable="d" Topmost="True" WindowStartupLocation="CenterScreen" ui:WindowHelper.UseModernWindowStyle="True"
|
|
|
|
|
ResizeMode="NoResize" ui:ThemeManager.RequestedTheme="Light"
|
2026-03-27 23:28:25 +08:00
|
|
|
Title="反馈问题 - Ink Canvas For Class CE" Height="550" Width="650" FontFamily="Microsoft YaHei UI">
|
|
|
|
|
<Grid Margin="30">
|
2026-03-21 23:28:41 +08:00
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition Height="*"/>
|
2026-03-27 23:28:25 +08:00
|
|
|
<RowDefinition Height="Auto"/>
|
2026-03-21 23:28:41 +08:00
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
|
2026-04-04 23:26:45 +08:00
|
|
|
<ui:Frame x:Name="ContentFrame" Grid.Row="0">
|
|
|
|
|
<ui:Frame.ContentTransitions>
|
|
|
|
|
<ui:TransitionCollection>
|
|
|
|
|
<ui:NavigationThemeTransition />
|
|
|
|
|
</ui:TransitionCollection>
|
|
|
|
|
</ui:Frame.ContentTransitions>
|
|
|
|
|
<ui:Frame.Content>
|
|
|
|
|
<feedbackPages:FeedbackPage1 x:Name="Page1"/>
|
|
|
|
|
</ui:Frame.Content>
|
|
|
|
|
</ui:Frame>
|
2026-04-04 21:38:10 +08:00
|
|
|
|
2026-03-27 23:28:25 +08:00
|
|
|
<Grid Grid.Row="1" VerticalAlignment="Bottom" Margin="0,20,0,0">
|
|
|
|
|
<ikw:SimpleStackPanel HorizontalAlignment="Right" VerticalAlignment="Center" Orientation="Horizontal" Spacing="12">
|
|
|
|
|
<Button x:Name="ButtonCancel" Content="取消" Width="100" Height="36" FontFamily="Microsoft YaHei UI" FontSize="14" Click="ButtonCancel_Click">
|
|
|
|
|
<Button.Style>
|
|
|
|
|
<Style TargetType="Button" BasedOn="{StaticResource {x:Static ui:ThemeKeys.DefaultButtonStyleKey}}">
|
|
|
|
|
<Setter Property="Foreground" Value="{DynamicResource {x:Static ui:ThemeKeys.TextFillColorPrimaryBrushKey}}"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</Button.Style>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button x:Name="ButtonNext" Content="下一步" Width="120" Height="36" FontFamily="Microsoft YaHei UI" FontSize="14" FontWeight="SemiBold" Click="ButtonNext_Click">
|
|
|
|
|
<Button.Style>
|
|
|
|
|
<Style TargetType="Button" BasedOn="{StaticResource {x:Static ui:ThemeKeys.AccentButtonStyleKey}}"/>
|
|
|
|
|
</Button.Style>
|
|
|
|
|
</Button>
|
|
|
|
|
<Button x:Name="ButtonBack" Content="上一页" Width="100" Height="36" FontFamily="Microsoft YaHei UI" FontSize="14" Click="ButtonBack_Click" Visibility="Collapsed">
|
|
|
|
|
<Button.Style>
|
|
|
|
|
<Style TargetType="Button" BasedOn="{StaticResource {x:Static ui:ThemeKeys.DefaultButtonStyleKey}}">
|
|
|
|
|
<Setter Property="Foreground" Value="{DynamicResource {x:Static ui:ThemeKeys.TextFillColorPrimaryBrushKey}}"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</Button.Style>
|
|
|
|
|
</Button>
|
2026-04-04 21:38:10 +08:00
|
|
|
<Button x:Name="ButtonConfirm" Content="下一步" Width="120" Height="36" FontFamily="Microsoft YaHei UI" FontSize="14" FontWeight="SemiBold" Click="ButtonConfirm_Click" Visibility="Collapsed">
|
2026-03-27 23:28:25 +08:00
|
|
|
<Button.Style>
|
|
|
|
|
<Style TargetType="Button" BasedOn="{StaticResource {x:Static ui:ThemeKeys.AccentButtonStyleKey}}"/>
|
|
|
|
|
</Button.Style>
|
2026-03-21 23:28:41 +08:00
|
|
|
</Button>
|
|
|
|
|
</ikw:SimpleStackPanel>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Grid>
|
|
|
|
|
</Window>
|