Skip to content

Commit

Permalink
feature: add folder functionalities to demo test app
Browse files Browse the repository at this point in the history
  • Loading branch information
Hong-Xiang committed Dec 7, 2024
1 parent 34556bd commit fc9a03a
Show file tree
Hide file tree
Showing 3 changed files with 314 additions and 204 deletions.
13 changes: 10 additions & 3 deletions prototype-workingdir/PickerUsageApp/MainWindow.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,15 @@
mc:Ignorable="d"
Title="PickerUsageApp">
<StackPanel Orientation="Vertical" VerticalAlignment="Center" HorizontalAlignment="Center">
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Center">
<RadioButtons SelectedIndex="0" SelectionChanged="PickerTypeChanged" Header="Picker">
<RadioButton Content="File Open"></RadioButton>
<RadioButton Content="File Save"></RadioButton>
<RadioButton Content="Folder"></RadioButton>
</RadioButtons>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock HorizontalAlignment="Center">Multi Selection</TextBlock>
<TextBlock VerticalAlignment="Center">Multi Selection</TextBlock>
<ToggleSwitch Toggled="MultiSelectToggled"/>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
Expand Down Expand Up @@ -46,8 +53,8 @@
</RadioButtons>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center" VerticalAlignment="Center">
<Button Click="OpenFileSDKClick">Open File (SDK)</Button>
<Button Click="OpenFileUWPClick">Open File (UWP)</Button>
<Button Click="SDKClick">Run SDK Picker</Button>
<Button Click="UWPClick">Run UWP Picker</Button>
<TextBlock x:Name="counterBlock"></TextBlock>
</StackPanel>
<Button Click="UIFronzenTestClick">UI Fronzen Test</Button>
Expand Down
Loading

0 comments on commit fc9a03a

Please sign in to comment.