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

Merge branch 'pagesSetup' into 'develop'

added all Pages

See merge request borst/procrastinator!3
parents 7d9fdc65 f4dd3fe1
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 @@
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="Styles/Styles.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
</Application.Resources>
</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