This commit is contained in:
Holger Boerchers 2018-08-14 23:32:17 +02:00
parent 7227d3215a
commit 40e859c28e
6 changed files with 9 additions and 44 deletions

View File

@ -1,9 +1,8 @@
<prism:PrismApplication x:Class="MaterialModernWPF.App" <prism:PrismApplication
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" x:Class="MaterialModernWPF.App"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:local="clr-namespace:MaterialModernWPF" xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:dragablz="http://dragablz.net/winfx/xaml/dragablz" xmlns:prism="http://prismlibrary.com/">
xmlns:prism="http://prismlibrary.com/">
<Application.Resources> <Application.Resources>
<ResourceDictionary> <ResourceDictionary>
<ResourceDictionary.MergedDictionaries> <ResourceDictionary.MergedDictionaries>

View File

@ -1,24 +1,9 @@
using System; namespace MaterialModernWPF.Module
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.Module
{ {
/// <summary> /// <summary>
/// Interaktionslogik für MainView.xaml /// Interaktionslogik für MainView.xaml
/// </summary> /// </summary>
public partial class MainView : UserControl public partial class MainView
{ {
public MainView() public MainView()
{ {

View File

@ -1,5 +1,4 @@
using System.Collections.Generic; using System.Collections.Generic;
using DryIoc;
using MaterialModernWPF.Service; using MaterialModernWPF.Service;
namespace MaterialModernWPF.Module namespace MaterialModernWPF.Module

View File

@ -1,6 +1,4 @@
using System.Reflection; using System.Reflection;
using System.Resources;
using System.Runtime.CompilerServices;
using System.Runtime.InteropServices; using System.Runtime.InteropServices;
using System.Windows; using System.Windows;

View File

@ -1,24 +1,9 @@
using System; namespace MaterialModernWPF.Service
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.Service
{ {
/// <summary> /// <summary>
/// Interaktionslogik für DetailedGeometryView.xaml /// Interaktionslogik für DetailedGeometryView.xaml
/// </summary> /// </summary>
public partial class DetailedGeometryView : CalculationView public partial class DetailedGeometryView
{ {
public DetailedGeometryView() public DetailedGeometryView()
{ {

View File

@ -2,7 +2,6 @@
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:local="clr-namespace:MaterialModernWPF"
xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes" xmlns:materialDesign="http://materialdesigninxaml.net/winfx/xaml/themes"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:system="clr-namespace:System;assembly=mscorlib" xmlns:system="clr-namespace:System;assembly=mscorlib"