]> O.S.I.I.S - jp/crow.git/commitdiff
reset welcome screen
authorJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Fri, 11 May 2018 06:07:12 +0000 (08:07 +0200)
committerJean-Philippe Bruyère <jp_bruyere@hotmail.com>
Fri, 11 May 2018 06:07:12 +0000 (08:07 +0200)
Tests/BasicTests.cs
Tests/Interfaces/Divers/welcome.crow

index 149ff4a9ebc0c6f0a32b2e4707c76ffe5b591474..5533db56ae0c537950c9262f6adea771ab9926c5 100644 (file)
@@ -177,8 +177,8 @@ namespace Tests
 
                        this.KeyDown += KeyboardKeyDown1;
 
-                       testFiles = new string [] { @"Interfaces/Experimental/testDock.crow" };
-                       //testFiles = new string [] { @"Interfaces/Divers/welcome.crow" };
+                       //testFiles = new string [] { @"Interfaces/Experimental/testDock.crow" };
+                       testFiles = new string [] { @"Interfaces/Divers/welcome.crow" };
                        //testFiles = new string [] { @"Interfaces/Divers/colorPicker.crow" };
                        testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/GraphicObject", "*.crow")).ToArray ();
                        testFiles = testFiles.Concat (Directory.GetFiles (@"Interfaces/Container", "*.crow")).ToArray ();
@@ -195,10 +195,10 @@ namespace Tests
 
                        Load(testFiles[idx]).DataSource = this;
 
-                       LoadIMLFragment (@"<DockWindow Width=""150"" Height=""150"" Background=""DarkRed"" />", 0);
-                       LoadIMLFragment (@"<DockWindow Width=""200"" Height=""150"" Background=""DarkGreen"" />", 0);
-                       LoadIMLFragment (@"<DockWindow Width=""250"" Height=""150"" Background=""Brown"" />", 0);
-                       LoadIMLFragment (@"<DockWindow Width=""300"" Height=""150"" Background=""DarkBlue"" />", 0);
+//                     LoadIMLFragment (@"<DockWindow Width=""150"" Height=""150"" Background=""DarkRed"" />", 0);
+//                     LoadIMLFragment (@"<DockWindow Width=""200"" Height=""150"" Background=""DarkGreen"" />", 0);
+//                     LoadIMLFragment (@"<DockWindow Width=""250"" Height=""150"" Background=""Brown"" />", 0);
+//                     LoadIMLFragment (@"<DockWindow Width=""300"" Height=""150"" Background=""DarkBlue"" />", 0);
 
 
                }
index 3445ef1c657ac2c536bdf4260176429abed480c0..22dfd7490d5b9074f2aaabbf90aa89bffae3979f 100644 (file)
@@ -1,2 +1,21 @@
 <?xml version="1.0"?>
-<GraphicObject Height="30" Width="30" Background="#500000"/>
\ No newline at end of file
+<Border BorderStyle="Sunken" Fit="true" Background="0.7,0.7,0.7,0.5" CornerRadius="10">
+       <VerticalStack Margin="20">
+               <Image Path="#Crow.Images.Icons.crow.svg"/>
+<!--           <Label Font="Times bold, 60" Text="C.R.O.W"/>-->
+               <HorizontalStack Fit="true" DataSource="{CrowVersion}" Spacing="0">
+                       <Label Foreground="Black" Font="mono, 12" Text="version: "/>            
+                       <Label Foreground="Black" Font="mono, 12" Text="{Major}"/>              
+                       <Label Foreground="Black" Font="mono, 12" Text="."/>
+                       <Label Foreground="Black" Font="mono, 12" Text="{Minor}"/>
+                       <Label Foreground="Black" Font="mono, 12" Text="."/>
+                       <Label Foreground="DimGray" Font="mono, 12" Text="{Build}"/>
+               </HorizontalStack>
+               <GraphicObject Height="30"/>
+               <Label Font="20" Text="Press &lt;F2&gt; and &lt;F3&gt; to cycle into the examples"/>
+               <Label Font="20" Text="Those are basic tests used to validate changes,"/>
+               <GraphicObject Height="30"/>
+               <Label Foreground="DimGray" Font="20" Text="&lt;F5&gt; => File dialog example"/>
+               <Label Foreground="DimGray" Font="20" Text="&lt;F6&gt; => Window example"/>
+       </VerticalStack>
+</Border>
\ No newline at end of file