-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathImportWizardWindow.xaml
More file actions
153 lines (138 loc) · 7.58 KB
/
ImportWizardWindow.xaml
File metadata and controls
153 lines (138 loc) · 7.58 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
<Window x:Class="AmpUp.ImportWizardWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
WindowStyle="None"
AllowsTransparency="True"
Background="Transparent"
WindowStartupLocation="CenterOwner"
ShowInTaskbar="False"
ResizeMode="NoResize"
Width="540" Height="600">
<Window.Resources>
<Storyboard x:Key="FadeIn">
<DoubleAnimation Storyboard.TargetName="RootPanel"
Storyboard.TargetProperty="Opacity"
From="0" To="1" Duration="0:0:0.15">
<DoubleAnimation.EasingFunction>
<CubicEase EasingMode="EaseOut" />
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
<DoubleAnimation Storyboard.TargetName="RootPanel"
Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleX)"
From="0.95" To="1" Duration="0:0:0.15">
<DoubleAnimation.EasingFunction>
<CubicEase EasingMode="EaseOut" />
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
<DoubleAnimation Storyboard.TargetName="RootPanel"
Storyboard.TargetProperty="(UIElement.RenderTransform).(ScaleTransform.ScaleY)"
From="0.95" To="1" Duration="0:0:0.15">
<DoubleAnimation.EasingFunction>
<CubicEase EasingMode="EaseOut" />
</DoubleAnimation.EasingFunction>
</DoubleAnimation>
</Storyboard>
</Window.Resources>
<Border x:Name="RootPanel" Opacity="0"
CornerRadius="14" Margin="8">
<Border.RenderTransform>
<ScaleTransform CenterX="0.5" CenterY="0.5" />
</Border.RenderTransform>
<Border.RenderTransformOrigin>0.5,0.5</Border.RenderTransformOrigin>
<Border.Background>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="#EE111111" Offset="0" />
<GradientStop Color="#DD0A0A0A" Offset="1" />
</LinearGradientBrush>
</Border.Background>
<Border.BorderBrush>
<LinearGradientBrush StartPoint="0,0" EndPoint="1,1">
<GradientStop Color="#5500E676" Offset="0" />
<GradientStop Color="#2200E676" Offset="1" />
</LinearGradientBrush>
</Border.BorderBrush>
<Border.BorderThickness>1.2</Border.BorderThickness>
<Border.Effect>
<DropShadowEffect Color="#00E676" BlurRadius="24" Opacity="0.15" ShadowDepth="0" />
</Border.Effect>
<Grid Margin="24,20">
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
<RowDefinition Height="Auto" />
</Grid.RowDefinitions>
<!-- ── Title Area ──────────────────────────────── -->
<StackPanel Grid.Row="0" Margin="0,0,0,16">
<TextBlock x:Name="TitleLabel" Text="IMPORT FROM TURN UP"
FontFamily="Segoe UI" FontSize="10" FontWeight="Bold"
Foreground="#6600E676" />
<TextBlock x:Name="StepText"
FontFamily="Segoe UI" FontSize="13" FontWeight="SemiBold"
Foreground="#E8E8E8" Margin="0,6,0,0" />
<!-- Step indicator dots -->
<StackPanel x:Name="StepDots" Orientation="Horizontal" Margin="0,10,0,0">
<Ellipse x:Name="Dot1" Width="8" Height="8" Fill="{DynamicResource AccentBrush}" Margin="0,0,6,0" />
<Ellipse x:Name="Dot2" Width="8" Height="8" Fill="#333333" Margin="0,0,6,0" />
<Ellipse x:Name="Dot3" Width="8" Height="8" Fill="#333333" Margin="0,0,0,0" />
</StackPanel>
</StackPanel>
<!-- ── Step 1: Detect & Select Profile ─────────── -->
<StackPanel x:Name="Step1" Grid.Row="1">
<TextBlock x:Name="DetectStatusText"
FontFamily="Segoe UI" FontSize="13"
Foreground="#9A9A9A" TextWrapping="Wrap"
Margin="0,0,0,16" />
<TextBlock Text="Select a profile to import:"
FontFamily="Segoe UI" FontSize="12"
Foreground="#9A9A9A" Margin="0,0,0,8"
x:Name="SelectProfileLabel" Visibility="Collapsed" />
<ListBox x:Name="ProfileListBox"
Background="Transparent"
BorderThickness="0"
Foreground="#E8E8E8"
FontFamily="Segoe UI" FontSize="14" />
</StackPanel>
<!-- ── Step 2: Review Mappings ──────────────────── -->
<ScrollViewer x:Name="Step2" Grid.Row="1" Visibility="Collapsed"
VerticalScrollBarVisibility="Auto"
HorizontalScrollBarVisibility="Disabled">
<StackPanel x:Name="MappingPanel" />
</ScrollViewer>
<!-- ── Step 3: Import ──────────────────────────── -->
<StackPanel x:Name="Step3" Grid.Row="1" Visibility="Collapsed">
<TextBlock Text="Profile Name"
FontFamily="Segoe UI" FontSize="12"
Foreground="#9A9A9A" Margin="0,0,0,6" />
<Border x:Name="ProfileNameBorder" Background="#1A242424" BorderBrush="#3300E676"
BorderThickness="1" CornerRadius="8" Padding="2"
Margin="0,0,0,20">
<TextBox x:Name="ProfileNameBox"
FontFamily="Segoe UI" FontSize="14"
Foreground="#E8E8E8"
Background="Transparent"
BorderThickness="0"
CaretBrush="#00E676"
Padding="10,8" />
</Border>
<TextBlock x:Name="SummaryLabel" Text="SUMMARY"
FontFamily="Segoe UI" FontSize="10" FontWeight="Bold"
Foreground="#6600E676" Margin="0,0,0,10" />
<TextBlock x:Name="SummaryText"
FontFamily="Segoe UI" FontSize="13"
Foreground="#E8E8E8" TextWrapping="Wrap"
LineHeight="22" />
<TextBlock x:Name="WarningsText"
FontFamily="Segoe UI" FontSize="12"
Foreground="#FFB800" TextWrapping="Wrap"
Margin="0,16,0,0" Visibility="Collapsed" />
</StackPanel>
<!-- ── Navigation Buttons ──────────────────────── -->
<StackPanel Grid.Row="2" Orientation="Horizontal"
HorizontalAlignment="Right" Margin="0,16,0,0">
<Button x:Name="BtnCancel" Content="Cancel" Margin="0,0,6,0" />
<Button x:Name="BtnBack" Content="Back" Margin="0,0,6,0" Visibility="Collapsed" />
<Button x:Name="BtnNext" Content="Next" />
</StackPanel>
</Grid>
</Border>
</Window>