File tree Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Expand file tree Collapse file tree 3 files changed +49
-0
lines changed Original file line number Diff line number Diff line change
1
+ <UserControl
2
+ x : Class =" Files.Controls.FileViewControl"
3
+ xmlns =" http://schemas.microsoft.com/winfx/2006/xaml/presentation"
4
+ xmlns : x =" http://schemas.microsoft.com/winfx/2006/xaml"
5
+ xmlns : local =" using:Files.Controls"
6
+ xmlns : d =" http://schemas.microsoft.com/expression/blend/2008"
7
+ xmlns : mc =" http://schemas.openxmlformats.org/markup-compatibility/2006"
8
+ mc : Ignorable =" d"
9
+ d : DesignHeight =" 300"
10
+ d : DesignWidth =" 400" >
11
+
12
+ <Grid >
13
+
14
+ </Grid >
15
+ </UserControl >
Original file line number Diff line number Diff line change
1
+ using System ;
2
+ using System . Collections . Generic ;
3
+ using System . IO ;
4
+ using System . Linq ;
5
+ using System . Runtime . InteropServices . WindowsRuntime ;
6
+ using Windows . Foundation ;
7
+ using Windows . Foundation . Collections ;
8
+ using Windows . UI . Xaml ;
9
+ using Windows . UI . Xaml . Controls ;
10
+ using Windows . UI . Xaml . Controls . Primitives ;
11
+ using Windows . UI . Xaml . Data ;
12
+ using Windows . UI . Xaml . Input ;
13
+ using Windows . UI . Xaml . Media ;
14
+ using Windows . UI . Xaml . Navigation ;
15
+
16
+ // The User Control item template is documented at https://go.microsoft.com/fwlink/?LinkId=234236
17
+
18
+ namespace Files . Controls
19
+ {
20
+ public sealed partial class FileViewControl : UserControl
21
+ {
22
+ public FileViewControl ( )
23
+ {
24
+ this . InitializeComponent ( ) ;
25
+ }
26
+ }
27
+ }
Original file line number Diff line number Diff line change 135
135
<DependentUpon >App.xaml</DependentUpon >
136
136
</Compile >
137
137
<Compile Include =" BaseLayout.cs" />
138
+ <Compile Include =" Controls\FileViewControl.xaml.cs" >
139
+ <DependentUpon >FileViewControl.xaml</DependentUpon >
140
+ </Compile >
138
141
<Compile Include =" Controls\RibbonArea.xaml.cs" >
139
142
<DependentUpon >RibbonArea.xaml</DependentUpon >
140
143
</Compile >
249
252
<Generator >MSBuild:Compile</Generator >
250
253
<SubType >Designer</SubType >
251
254
</ApplicationDefinition >
255
+ <Page Include =" Controls\FileViewControl.xaml" >
256
+ <SubType >Designer</SubType >
257
+ <Generator >MSBuild:Compile</Generator >
258
+ </Page >
252
259
<Page Include =" Controls\RibbonArea.xaml" >
253
260
<SubType >Designer</SubType >
254
261
<Generator >MSBuild:Compile</Generator >
You can’t perform that action at this time.
0 commit comments