Added Dragablz, cleanup
This commit is contained in:
@ -1,6 +1,6 @@
|
|||||||
<?xml version="1.0" encoding="utf-8" ?>
|
<?xml version="1.0" encoding="utf-8"?>
|
||||||
<configuration>
|
<configuration>
|
||||||
<startup>
|
<startup>
|
||||||
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5.2" />
|
<supportedRuntime version="v4.0" sku=".NETFramework,Version=v4.5"/>
|
||||||
</startup>
|
</startup>
|
||||||
</configuration>
|
</configuration>
|
||||||
|
@ -1,15 +1,23 @@
|
|||||||
<Application x:Class="MaterialModernWPF.App"
|
<Application x:Class="MaterialModernWPF.App"
|
||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:local="clr-namespace:MaterialModernWPF">
|
xmlns:local="clr-namespace:MaterialModernWPF"
|
||||||
|
xmlns:dragablz="http://dragablz.net/winfx/xaml/dragablz">
|
||||||
<Application.Resources>
|
<Application.Resources>
|
||||||
<ResourceDictionary>
|
<ResourceDictionary>
|
||||||
<ResourceDictionary.MergedDictionaries>
|
<ResourceDictionary.MergedDictionaries>
|
||||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Light.xaml" />
|
<!-- Material Design -->
|
||||||
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Dark.xaml" />
|
||||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignThemes.Wpf;component/Themes/MaterialDesignTheme.Defaults.xaml" />
|
||||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Indigo.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Primary/MaterialDesignColor.Blue.xaml" />
|
||||||
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
|
<ResourceDictionary Source="pack://application:,,,/MaterialDesignColors;component/Themes/Recommended/Accent/MaterialDesignColor.Lime.xaml" />
|
||||||
|
|
||||||
|
<!-- Dragablz Material Design -->
|
||||||
|
<ResourceDictionary Source="pack://application:,,,/Dragablz;component/Themes/materialdesign.xaml" />
|
||||||
</ResourceDictionary.MergedDictionaries>
|
</ResourceDictionary.MergedDictionaries>
|
||||||
|
|
||||||
|
<!-- Dragablz Material Design -->
|
||||||
|
<Style TargetType="{x:Type dragablz:TabablzControl}" BasedOn="{StaticResource MaterialDesignTabablzControlStyle}" />
|
||||||
</ResourceDictionary>
|
</ResourceDictionary>
|
||||||
</Application.Resources>
|
</Application.Resources>
|
||||||
</Application>
|
</Application>
|
||||||
|
@ -17,7 +17,6 @@ namespace MaterialModernWPF
|
|||||||
|
|
||||||
protected override void InitializeShell()
|
protected override void InitializeShell()
|
||||||
{
|
{
|
||||||
base.InitializeShell();
|
|
||||||
Application.Current.MainWindow = (Window)Shell;
|
Application.Current.MainWindow = (Window)Shell;
|
||||||
Application.Current.MainWindow.Show();
|
Application.Current.MainWindow.Show();
|
||||||
}
|
}
|
||||||
|
31
MaterialModernWPF/InfoDialog.xaml
Normal file
31
MaterialModernWPF/InfoDialog.xaml
Normal file
@ -0,0 +1,31 @@
|
|||||||
|
<UserControl x:Class="MaterialModernWPF.InfoDialog"
|
||||||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:local="clr-namespace:MaterialModernWPF"
|
||||||
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
|
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
||||||
|
Width="300"
|
||||||
|
d:DesignHeight="300"
|
||||||
|
mc:Ignorable="d">
|
||||||
|
<StackPanel Margin="16">
|
||||||
|
<TextBlock Margin="0,0,0,10"
|
||||||
|
FontSize="16"
|
||||||
|
Text="NiftyTool NG" />
|
||||||
|
<TextBlock FontSize="14" TextWrapping="Wrap">
|
||||||
|
This app is proudly made with: Material Design, ModernWPF 2 and Autofac.
|
||||||
|
</TextBlock>
|
||||||
|
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
||||||
|
<Button Margin="0,10,0,0"
|
||||||
|
Command="materialDesign:DialogHost.CloseDialogCommand"
|
||||||
|
IsDefault="True"
|
||||||
|
Style="{StaticResource MaterialDesignFlatButton}">
|
||||||
|
<Button.CommandParameter>
|
||||||
|
<system:Boolean>True</system:Boolean>
|
||||||
|
</Button.CommandParameter>
|
||||||
|
CLOSE
|
||||||
|
</Button>
|
||||||
|
</StackPanel>
|
||||||
|
</StackPanel>
|
||||||
|
</UserControl>
|
15
MaterialModernWPF/InfoDialog.xaml.cs
Normal file
15
MaterialModernWPF/InfoDialog.xaml.cs
Normal file
@ -0,0 +1,15 @@
|
|||||||
|
using System.Windows.Controls;
|
||||||
|
|
||||||
|
namespace MaterialModernWPF
|
||||||
|
{
|
||||||
|
/// <summary>
|
||||||
|
/// Interaktionslogik für InfoDialog.xaml
|
||||||
|
/// </summary>
|
||||||
|
public partial class InfoDialog : UserControl
|
||||||
|
{
|
||||||
|
public InfoDialog()
|
||||||
|
{
|
||||||
|
InitializeComponent();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
@ -9,14 +9,15 @@
|
|||||||
<AppDesignerFolder>Properties</AppDesignerFolder>
|
<AppDesignerFolder>Properties</AppDesignerFolder>
|
||||||
<RootNamespace>MaterialModernWPF</RootNamespace>
|
<RootNamespace>MaterialModernWPF</RootNamespace>
|
||||||
<AssemblyName>MaterialModernWPF</AssemblyName>
|
<AssemblyName>MaterialModernWPF</AssemblyName>
|
||||||
<TargetFrameworkVersion>v4.5.2</TargetFrameworkVersion>
|
<TargetFrameworkVersion>v4.5</TargetFrameworkVersion>
|
||||||
<FileAlignment>512</FileAlignment>
|
<FileAlignment>512</FileAlignment>
|
||||||
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
<ProjectTypeGuids>{60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}</ProjectTypeGuids>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
<AutoGenerateBindingRedirects>true</AutoGenerateBindingRedirects>
|
||||||
|
<TargetFrameworkProfile />
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Debug|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>x64</PlatformTarget>
|
||||||
<DebugSymbols>true</DebugSymbols>
|
<DebugSymbols>true</DebugSymbols>
|
||||||
<DebugType>full</DebugType>
|
<DebugType>full</DebugType>
|
||||||
<Optimize>false</Optimize>
|
<Optimize>false</Optimize>
|
||||||
@ -24,6 +25,7 @@
|
|||||||
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
<DefineConstants>DEBUG;TRACE</DefineConstants>
|
||||||
<ErrorReport>prompt</ErrorReport>
|
<ErrorReport>prompt</ErrorReport>
|
||||||
<WarningLevel>4</WarningLevel>
|
<WarningLevel>4</WarningLevel>
|
||||||
|
<Prefer32Bit>false</Prefer32Bit>
|
||||||
</PropertyGroup>
|
</PropertyGroup>
|
||||||
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
<PropertyGroup Condition=" '$(Configuration)|$(Platform)' == 'Release|AnyCPU' ">
|
||||||
<PlatformTarget>AnyCPU</PlatformTarget>
|
<PlatformTarget>AnyCPU</PlatformTarget>
|
||||||
@ -42,6 +44,10 @@
|
|||||||
<HintPath>..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
|
<HintPath>..\packages\Autofac.3.5.2\lib\net40\Autofac.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
</Reference>
|
</Reference>
|
||||||
|
<Reference Include="Dragablz, Version=0.0.3.169, Culture=neutral, processorArchitecture=MSIL">
|
||||||
|
<HintPath>..\packages\Dragablz.0.0.3.169\lib\net45\Dragablz.dll</HintPath>
|
||||||
|
<Private>True</Private>
|
||||||
|
</Reference>
|
||||||
<Reference Include="MaterialDesignColors, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
|
<Reference Include="MaterialDesignColors, Version=1.1.3.0, Culture=neutral, processorArchitecture=MSIL">
|
||||||
<HintPath>..\packages\MaterialDesignColors.1.1.3\lib\net45\MaterialDesignColors.dll</HintPath>
|
<HintPath>..\packages\MaterialDesignColors.1.1.3\lib\net45\MaterialDesignColors.dll</HintPath>
|
||||||
<Private>True</Private>
|
<Private>True</Private>
|
||||||
@ -95,8 +101,11 @@
|
|||||||
<DependentUpon>App.xaml</DependentUpon>
|
<DependentUpon>App.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
<Compile Include="Shell.xaml.cs" >
|
<Compile Include="InfoDialog.xaml.cs">
|
||||||
<DependentUpon>Shell.xaml</DependentUpon>
|
<DependentUpon>InfoDialog.xaml</DependentUpon>
|
||||||
|
</Compile>
|
||||||
|
<Compile Include="Shell.xaml.cs">
|
||||||
|
<DependentUpon>Shell.xaml</DependentUpon>
|
||||||
<SubType>Code</SubType>
|
<SubType>Code</SubType>
|
||||||
</Compile>
|
</Compile>
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
@ -133,6 +142,10 @@
|
|||||||
<Resource Include="airballoon.ico" />
|
<Resource Include="airballoon.ico" />
|
||||||
</ItemGroup>
|
</ItemGroup>
|
||||||
<ItemGroup>
|
<ItemGroup>
|
||||||
|
<Page Include="InfoDialog.xaml">
|
||||||
|
<SubType>Designer</SubType>
|
||||||
|
<Generator>MSBuild:Compile</Generator>
|
||||||
|
</Page>
|
||||||
<Page Include="Shell.xaml">
|
<Page Include="Shell.xaml">
|
||||||
<Generator>MSBuild:Compile</Generator>
|
<Generator>MSBuild:Compile</Generator>
|
||||||
<SubType>Designer</SubType>
|
<SubType>Designer</SubType>
|
||||||
|
56
MaterialModernWPF/Properties/Resources.Designer.cs
generated
56
MaterialModernWPF/Properties/Resources.Designer.cs
generated
@ -1,69 +1,61 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// Dieser Code wurde von einem Tool generiert.
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
// Laufzeitversion: 4.0.30319.42000
|
// Laufzeitversion:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
// der Code neu generiert wird.
|
// der Code erneut generiert wird.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace MaterialModernWPF.Properties
|
namespace MaterialModernWPF.Properties {
|
||||||
{
|
using System;
|
||||||
|
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
/// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
// Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse
|
// Diese Klasse wurde von der StronglyTypedResourceBuilder automatisch generiert
|
||||||
// über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
// -Klasse über ein Tool wie ResGen oder Visual Studio automatisch generiert.
|
||||||
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
// Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen
|
||||||
// mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu.
|
// mit der /str-Option erneut aus, oder Sie erstellen Ihr VS-Projekt neu.
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
|
||||||
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
[global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
internal class Resources
|
internal class Resources {
|
||||||
{
|
|
||||||
|
|
||||||
private static global::System.Resources.ResourceManager resourceMan;
|
private static global::System.Resources.ResourceManager resourceMan;
|
||||||
|
|
||||||
private static global::System.Globalization.CultureInfo resourceCulture;
|
private static global::System.Globalization.CultureInfo resourceCulture;
|
||||||
|
|
||||||
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
[global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
|
||||||
internal Resources()
|
internal Resources() {
|
||||||
{
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
/// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Resources.ResourceManager ResourceManager
|
internal static global::System.Resources.ResourceManager ResourceManager {
|
||||||
{
|
get {
|
||||||
get
|
if (object.ReferenceEquals(resourceMan, null)) {
|
||||||
{
|
|
||||||
if ((resourceMan == null))
|
|
||||||
{
|
|
||||||
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MaterialModernWPF.Properties.Resources", typeof(Resources).Assembly);
|
global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("MaterialModernWPF.Properties.Resources", typeof(Resources).Assembly);
|
||||||
resourceMan = temp;
|
resourceMan = temp;
|
||||||
}
|
}
|
||||||
return resourceMan;
|
return resourceMan;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
/// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle
|
||||||
/// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden.
|
/// Ressourcenzuordnungen, die diese stark typisierte Ressourcenklasse verwenden.
|
||||||
/// </summary>
|
/// </summary>
|
||||||
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
[global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
|
||||||
internal static global::System.Globalization.CultureInfo Culture
|
internal static global::System.Globalization.CultureInfo Culture {
|
||||||
{
|
get {
|
||||||
get
|
|
||||||
{
|
|
||||||
return resourceCulture;
|
return resourceCulture;
|
||||||
}
|
}
|
||||||
set
|
set {
|
||||||
{
|
|
||||||
resourceCulture = value;
|
resourceCulture = value;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
30
MaterialModernWPF/Properties/Settings.Designer.cs
generated
30
MaterialModernWPF/Properties/Settings.Designer.cs
generated
@ -1,28 +1,24 @@
|
|||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
// <auto-generated>
|
// <auto-generated>
|
||||||
// This code was generated by a tool.
|
// Dieser Code wurde von einem Tool generiert.
|
||||||
// Runtime Version:4.0.30319.42000
|
// Laufzeitversion:4.0.30319.42000
|
||||||
//
|
//
|
||||||
// Changes to this file may cause incorrect behavior and will be lost if
|
// Änderungen an dieser Datei können falsches Verhalten verursachen und gehen verloren, wenn
|
||||||
// the code is regenerated.
|
// der Code erneut generiert wird.
|
||||||
// </auto-generated>
|
// </auto-generated>
|
||||||
//------------------------------------------------------------------------------
|
//------------------------------------------------------------------------------
|
||||||
|
|
||||||
namespace MaterialModernWPF.Properties
|
namespace MaterialModernWPF.Properties {
|
||||||
{
|
|
||||||
|
|
||||||
|
|
||||||
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
[global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
|
||||||
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
|
[global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "14.0.0.0")]
|
||||||
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
|
internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase {
|
||||||
{
|
|
||||||
|
|
||||||
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
|
||||||
|
|
||||||
public static Settings Default
|
public static Settings Default {
|
||||||
{
|
get {
|
||||||
get
|
|
||||||
{
|
|
||||||
return defaultInstance;
|
return defaultInstance;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2,13 +2,14 @@
|
|||||||
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||||||
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||||||
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||||||
|
xmlns:dragablz="http://dragablz.net/winfx/xaml/dragablz"
|
||||||
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
|
||||||
|
xmlns:materialModernWpf="clr-namespace:MaterialModernWPF"
|
||||||
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||||||
xmlns:modern="http://modernwpf"
|
xmlns:modern="http://modernwpf"
|
||||||
xmlns:prism="http://prismlibrary.com/"
|
xmlns:prism="http://prismlibrary.com/"
|
||||||
xmlns:system="clr-namespace:System;assembly=mscorlib"
|
|
||||||
x:Name="Window"
|
x:Name="Window"
|
||||||
Title="Material Design In XAML Toolkit"
|
Title="NiftyTool NG"
|
||||||
Width="920"
|
Width="920"
|
||||||
Height="600"
|
Height="600"
|
||||||
modern:UIHooks.AutoDpiScale="True"
|
modern:UIHooks.AutoDpiScale="True"
|
||||||
@ -31,77 +32,98 @@
|
|||||||
ShowTitle="False" />
|
ShowTitle="False" />
|
||||||
<materialDesign:DialogHost Grid.Row="1" Identifier="RootDialog">
|
<materialDesign:DialogHost Grid.Row="1" Identifier="RootDialog">
|
||||||
<materialDesign:DialogHost.DialogContent>
|
<materialDesign:DialogHost.DialogContent>
|
||||||
<StackPanel Margin="16">
|
<materialModernWpf:InfoDialog />
|
||||||
<TextBlock>Tell me your name:</TextBlock>
|
|
||||||
<TextBox Margin="0 8 0 0" HorizontalAlignment="Stretch" />
|
|
||||||
<StackPanel HorizontalAlignment="Right" Orientation="Horizontal">
|
|
||||||
<Button Margin="0 8 8 0"
|
|
||||||
Command="materialDesign:DialogHost.CloseDialogCommand"
|
|
||||||
IsDefault="True"
|
|
||||||
Style="{StaticResource MaterialDesignFlatButton}">
|
|
||||||
<Button.CommandParameter>
|
|
||||||
<system:Boolean>True</system:Boolean>
|
|
||||||
</Button.CommandParameter>
|
|
||||||
ACCEPT
|
|
||||||
</Button>
|
|
||||||
<Button Margin="0 8 8 0"
|
|
||||||
Command="materialDesign:DialogHost.CloseDialogCommand"
|
|
||||||
IsCancel="True"
|
|
||||||
Style="{StaticResource MaterialDesignFlatButton}">
|
|
||||||
<Button.CommandParameter>
|
|
||||||
<system:Boolean>False</system:Boolean>
|
|
||||||
</Button.CommandParameter>
|
|
||||||
CANCEL
|
|
||||||
</Button>
|
|
||||||
</StackPanel>
|
|
||||||
</StackPanel>
|
|
||||||
</materialDesign:DialogHost.DialogContent>
|
</materialDesign:DialogHost.DialogContent>
|
||||||
<materialDesign:DrawerHost Grid.Row="1" IsLeftDrawerOpen="{Binding ElementName=MenuToggleButton, Path=IsChecked}">
|
<materialDesign:DrawerHost IsLeftDrawerOpen="{Binding ElementName=MenuToggleButton, Path=IsChecked}">
|
||||||
<materialDesign:DrawerHost.LeftDrawerContent>
|
<materialDesign:DrawerHost.LeftDrawerContent>
|
||||||
<DockPanel MinWidth="212">
|
<DockPanel MinWidth="212">
|
||||||
<ToggleButton Margin="16"
|
<ToggleButton Margin="12"
|
||||||
HorizontalAlignment="Right"
|
HorizontalAlignment="Right"
|
||||||
DockPanel.Dock="Top"
|
DockPanel.Dock="Top"
|
||||||
IsChecked="{Binding ElementName=MenuToggleButton,
|
IsChecked="{Binding ElementName=MenuToggleButton,
|
||||||
Path=IsChecked,
|
Path=IsChecked,
|
||||||
Mode=TwoWay}"
|
Mode=TwoWay}"
|
||||||
Style="{StaticResource MaterialDesignHamburgerToggleButton}" />
|
Style="{StaticResource MaterialDesignHamburgerToggleButton}" />
|
||||||
<TreeView>
|
<Grid>
|
||||||
<TreeViewItem Header="Item1" IsExpanded="True">
|
<Grid.RowDefinitions>
|
||||||
<TreeViewItem Header="Item1" />
|
<RowDefinition Height="Auto" />
|
||||||
<TreeViewItem Header="Item2" />
|
<RowDefinition />
|
||||||
<TreeViewItem Header="Item3" />
|
<RowDefinition Height="Auto" />
|
||||||
</TreeViewItem>
|
<RowDefinition />
|
||||||
<TreeViewItem Header="Item2" />
|
</Grid.RowDefinitions>
|
||||||
<TreeViewItem Header="Item3" />
|
<TextBlock Grid.Row="0"
|
||||||
<TreeViewItem Header="Item4" />
|
Margin="5"
|
||||||
</TreeView>
|
Text="Favorites" />
|
||||||
|
<ListBox Grid.Row="1">
|
||||||
|
<TextBlock Text="WIND020214" />
|
||||||
|
<TextBlock Text="WIND020248" />
|
||||||
|
<TextBlock Text="SRV-LSIMCTRL01" />
|
||||||
|
</ListBox>
|
||||||
|
<TextBlock Grid.Row="2"
|
||||||
|
Margin="5"
|
||||||
|
Text="History" />
|
||||||
|
<ListBox Grid.Row="3">
|
||||||
|
<TextBlock Text="WIND020214" />
|
||||||
|
<TextBlock Text="WIND020248" />
|
||||||
|
<TextBlock Text="SRV-LSIMCTRL01" />
|
||||||
|
</ListBox>
|
||||||
|
</Grid>
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
</materialDesign:DrawerHost.LeftDrawerContent>
|
</materialDesign:DrawerHost.LeftDrawerContent>
|
||||||
<DockPanel>
|
<DockPanel>
|
||||||
<materialDesign:ColorZone materialDesign:ShadowAssist.ShadowDepth="Depth2"
|
<materialDesign:ColorZone materialDesign:ShadowAssist.ShadowDepth="Depth2"
|
||||||
DockPanel.Dock="Top"
|
DockPanel.Dock="Top"
|
||||||
Mode="PrimaryMid"
|
Mode="PrimaryMid"
|
||||||
Padding="16">
|
Padding="2">
|
||||||
<DockPanel>
|
<DockPanel>
|
||||||
<ToggleButton x:Name="MenuToggleButton"
|
<ToggleButton x:Name="MenuToggleButton"
|
||||||
IsChecked="False"
|
IsChecked="False"
|
||||||
Style="{StaticResource MaterialDesignHamburgerToggleButton}" />
|
Style="{StaticResource MaterialDesignHamburgerToggleButton}" />
|
||||||
<materialDesign:PopupBox DockPanel.Dock="Right"
|
<StackPanel DockPanel.Dock="Right" Orientation="Horizontal">
|
||||||
PlacementMode="BottomAndAlignRightEdges"
|
<Button materialDesign:ShadowAssist.ShadowDepth="Depth0" Style="{StaticResource MaterialDesignFloatingActionButton}">
|
||||||
StaysOpen="False">
|
<materialDesign:PackIcon Width="32"
|
||||||
<StackPanel>
|
Height="32"
|
||||||
<Button Command="{x:Static materialDesign:DialogHost.OpenDialogCommand}" Content="Info" />
|
Kind="CubeOutline" />
|
||||||
</StackPanel>
|
</Button>
|
||||||
</materialDesign:PopupBox>
|
<Button materialDesign:ShadowAssist.ShadowDepth="Depth0" Style="{StaticResource MaterialDesignFloatingActionButton}">
|
||||||
<TextBlock HorizontalAlignment="Center"
|
<materialDesign:PackIcon Width="32"
|
||||||
|
Height="32"
|
||||||
|
Kind="Clippy" />
|
||||||
|
</Button>
|
||||||
|
<materialDesign:PopupBox PlacementMode="BottomAndAlignRightEdges" StaysOpen="False">
|
||||||
|
<StackPanel>
|
||||||
|
<Button Command="{x:Static materialDesign:DialogHost.OpenDialogCommand}" Content="Einstellungen" />
|
||||||
|
<Button Command="{x:Static materialDesign:DialogHost.OpenDialogCommand}" Content="Info" />
|
||||||
|
</StackPanel>
|
||||||
|
</materialDesign:PopupBox>
|
||||||
|
</StackPanel>
|
||||||
|
<TextBlock Margin="10,0,0,0"
|
||||||
|
HorizontalAlignment="Left"
|
||||||
VerticalAlignment="Center"
|
VerticalAlignment="Center"
|
||||||
FontSize="22"
|
FontSize="22"
|
||||||
Text="{Binding Title,
|
Text="{Binding Title,
|
||||||
ElementName=Window}" />
|
ElementName=Window}" />
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
</materialDesign:ColorZone>
|
</materialDesign:ColorZone>
|
||||||
<ContentControl prism:RegionManager.RegionName="MainArea" />
|
<dragablz:TabablzControl>
|
||||||
|
<dragablz:TabablzControl.InterTabController>
|
||||||
|
<dragablz:InterTabController />
|
||||||
|
</dragablz:TabablzControl.InterTabController>
|
||||||
|
<TabItem Header="Tab No. 1" IsSelected="True">
|
||||||
|
<TextBlock Margin="12"
|
||||||
|
FontSize="24"
|
||||||
|
Foreground="{StaticResource MaterialDesignDarkForeground}">
|
||||||
|
Hello World
|
||||||
|
</TextBlock>
|
||||||
|
</TabItem>
|
||||||
|
<TabItem Header="Tab No. 2">
|
||||||
|
<TextBlock Margin="12"
|
||||||
|
FontSize="24"
|
||||||
|
Foreground="{StaticResource MaterialDesignDarkForeground}">
|
||||||
|
We Have Tearable Tabs!
|
||||||
|
</TextBlock>
|
||||||
|
</TabItem>
|
||||||
|
</dragablz:TabablzControl>
|
||||||
</DockPanel>
|
</DockPanel>
|
||||||
</materialDesign:DrawerHost>
|
</materialDesign:DrawerHost>
|
||||||
</materialDesign:DialogHost>
|
</materialDesign:DialogHost>
|
||||||
|
@ -1,22 +1,9 @@
|
|||||||
using System;
|
using System.Windows;
|
||||||
using System.Collections.Generic;
|
|
||||||
using System.Linq;
|
|
||||||
using System.Text;
|
|
||||||
using System.Threading.Tasks;
|
|
||||||
using System.Windows;
|
|
||||||
using System.Windows.Controls;
|
|
||||||
using System.Windows.Data;
|
|
||||||
using System.Windows.Documents;
|
|
||||||
using System.Windows.Input;
|
|
||||||
using System.Windows.Media;
|
|
||||||
using System.Windows.Media.Imaging;
|
|
||||||
using System.Windows.Navigation;
|
|
||||||
using System.Windows.Shapes;
|
|
||||||
|
|
||||||
namespace MaterialModernWPF
|
namespace MaterialModernWPF
|
||||||
{
|
{
|
||||||
/// <summary>
|
/// <summary>
|
||||||
/// Interaktionslogik für MainWindow.xaml
|
/// Interaktionslogik für MainWindow.xaml
|
||||||
/// </summary>
|
/// </summary>
|
||||||
public partial class Shell : Window
|
public partial class Shell : Window
|
||||||
{
|
{
|
||||||
@ -25,4 +12,4 @@ namespace MaterialModernWPF
|
|||||||
InitializeComponent();
|
InitializeComponent();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
@ -2,6 +2,7 @@
|
|||||||
<packages>
|
<packages>
|
||||||
<package id="Autofac" version="3.5.2" targetFramework="net452" />
|
<package id="Autofac" version="3.5.2" targetFramework="net452" />
|
||||||
<package id="CommonServiceLocator" version="1.3" targetFramework="net452" />
|
<package id="CommonServiceLocator" version="1.3" targetFramework="net452" />
|
||||||
|
<package id="Dragablz" version="0.0.3.169" targetFramework="net452" />
|
||||||
<package id="MaterialDesignColors" version="1.1.3" targetFramework="net452" />
|
<package id="MaterialDesignColors" version="1.1.3" targetFramework="net452" />
|
||||||
<package id="MaterialDesignThemes" version="2.0.0.638" targetFramework="net452" />
|
<package id="MaterialDesignThemes" version="2.0.0.638" targetFramework="net452" />
|
||||||
<package id="ModernWpf.Core" version="2.0.0-alpha94" targetFramework="net452" />
|
<package id="ModernWpf.Core" version="2.0.0-alpha94" targetFramework="net452" />
|
||||||
|
Reference in New Issue
Block a user