File tree Expand file tree Collapse file tree 4 files changed +74
-0
lines changed
Expand file tree Collapse file tree 4 files changed +74
-0
lines changed Original file line number Diff line number Diff line change 240240 <Compile Include =" SettingsPages\Appearance.xaml.cs" >
241241 <DependentUpon >Appearance.xaml</DependentUpon >
242242 </Compile >
243+ <Compile Include =" SettingsPages\Flags.xaml.cs" >
244+ <DependentUpon >Flags.xaml</DependentUpon >
245+ </Compile >
243246 <Compile Include =" SettingsPages\Preferences.xaml.cs" >
244247 <DependentUpon >Preferences.xaml</DependentUpon >
245248 </Compile >
378381 <SubType >Designer</SubType >
379382 <Generator >MSBuild:Compile</Generator >
380383 </Page >
384+ <Page Include =" SettingsPages\Flags.xaml" >
385+ <Generator >MSBuild:Compile</Generator >
386+ <SubType >Designer</SubType >
387+ </Page >
381388 <Page Include =" SettingsPages\Preferences.xaml" >
382389 <SubType >Designer</SubType >
383390 <Generator >MSBuild:Compile</Generator >
Original file line number Diff line number Diff line change 1+ <Page
2+ x : Class =" Files.SettingsPages.Flags"
3+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
5+ xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
6+ xmlns : datamodels =" using:Files.DataModels"
7+ xmlns : local =" using:Files.SettingsPages"
8+ xmlns : local2 =" using:Files"
9+ xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
10+ Background =" {ThemeResource ApplicationPageBackgroundThemeBrush}"
11+ mc : Ignorable =" d" >
12+
13+ <Grid >
14+ <ScrollViewer HorizontalAlignment =" Stretch" VerticalAlignment =" Stretch" >
15+ <StackPanel
16+ Margin =" 12,12,8,8"
17+ Orientation =" Vertical"
18+ Spacing =" 14" >
19+ <StackPanel .ChildrenTransitions>
20+ <TransitionCollection >
21+ <RepositionThemeTransition />
22+ <ReorderThemeTransition />
23+ </TransitionCollection >
24+ </StackPanel .ChildrenTransitions>
25+
26+ <TextBlock
27+ x : Uid =" SettingsFlagsTitle"
28+ FontSize =" 22"
29+ Text =" Flags" />
30+
31+ </StackPanel >
32+ </ScrollViewer >
33+
34+ </Grid >
35+ </Page >
Original file line number Diff line number Diff line change 1+ using Windows . Storage ;
2+ using Windows . UI . Xaml . Controls ;
3+ using System ;
4+ using Windows . UI . Xaml . Media ;
5+ using Windows . UI ;
6+ using System . IO ;
7+ using Files . Filesystem ;
8+ using Newtonsoft . Json ;
9+ using Files . DataModels ;
10+ using System . Collections . ObjectModel ;
11+ using Windows . System ;
12+ using Windows . UI . Xaml . Navigation ;
13+ using System . Linq ;
14+
15+ namespace Files . SettingsPages
16+ {
17+
18+ public sealed partial class Flags : Page
19+ {
20+ StorageFolder localFolder = ApplicationData . Current . LocalFolder ;
21+ ApplicationDataContainer localSettings = ApplicationData . Current . LocalSettings ;
22+
23+
24+ public Flags ( )
25+ {
26+ this . InitializeComponent ( ) ;
27+ }
28+ }
29+ }
Original file line number Diff line number Diff line change 198198 <data name =" SettingsFilesAndFoldersTitle.Text" xml : space =" preserve" >
199199 <value >Files and Folders</value >
200200 </data >
201+ <data name =" SettingsFlagsTitle.Text" xml : space =" preserve" >
202+ <value >Flags</value >
203+ </data >
201204 <data name =" SettingsNav.PaneTitle" xml : space =" preserve" >
202205 <value >Settings</value >
203206 </data >
You can’t perform that action at this time.
0 commit comments