Skip to content
Snippets Groups Projects
Commit f4dd3fe1 authored by Martin Hustoles's avatar Martin Hustoles
Browse files

added all Pages

parent 7d9fdc65
No related branches found
No related tags found
1 merge request!3added all Pages
Showing
with 33 additions and 0 deletions
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
No preview for this file type
...@@ -8,6 +8,8 @@ ...@@ -8,6 +8,8 @@
<ResourceDictionary.MergedDictionaries> <ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles/Styles.xaml"/> <ResourceDictionary Source="Styles/Styles.xaml"/>
</ResourceDictionary.MergedDictionaries> </ResourceDictionary.MergedDictionaries>
</ResourceDictionary> </ResourceDictionary>
</Application.Resources> </Application.Resources>
</Application> </Application>
InnoLabProjektDektopApp/InnoLabProjektDektopApp/Assets/logo.png

7.36 KiB

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using InnoLabProjektDektopApp.Screens.Templates;
namespace InnoLabProjektDektopApp
{
internal class GlobalSettings
{
public static void setDefaults(Window window) {
window.Title = "CoFlow";
window.Width = 900;
window.Height = 550;
window.MinWidth = 400;
window.MinHeight = 300;
window.ResizeMode = ResizeMode.CanMinimize;
}
public static void setDefaults(UserControl userControl)
{
userControl.Width = 900;
userControl.Height = 50;
}
}
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment