Browse Source

New project name MODELING_DEF_DES_MI_VI

master
Nikita Romanenko 6 years ago
parent
commit
34292a5fc3
  1. 25
      MODELING-DEF-DES-MI-VI.sln
  2. 4
      Pores/App.xaml
  3. 2
      Pores/App.xaml.cs
  4. 10
      Pores/Bootstrap.cs
  5. 2
      Pores/Controllers/BaseSaveLoadController.cs
  6. 4
      Pores/Controllers/BatchGenerator.cs
  7. 4
      Pores/Controllers/ConnectedPoreReportGenerator.cs
  8. 8
      Pores/Controllers/PoreGenerator.cs
  9. 6
      Pores/Controllers/ReportGenerator.cs
  10. 2
      Pores/Helpers/PropertyChanged.cs
  11. 2
      Pores/Helpers/RelayCommand.cs
  12. 4
      Pores/Interfaces/IPoreGenerator.cs
  13. 4
      Pores/Interfaces/IPoreSpread.cs
  14. 0
      Pores/MODELING-DEF-DES-MI-VI.csproj
  15. 4
      Pores/MainWindow.xaml
  16. 2
      Pores/MainWindow.xaml.cs
  17. 10
      Pores/MainWindowViewModel.cs
  18. 4
      Pores/Models/BatchPoint.cs
  19. 4
      Pores/Models/Material.cs
  20. 4
      Pores/Models/Point.cs
  21. 4
      Pores/Models/Point2D.cs
  22. 4
      Pores/Models/Point3D.cs
  23. 2
      Pores/Models/Pore.cs
  24. 6
      Pores/Models/Spreads/BaseSpread.cs
  25. 2
      Pores/Models/Spreads/NormalSpread.cs
  26. 2
      Pores/Properties/Resources.Designer.cs
  27. 2
      Pores/Properties/Settings.Designer.cs

25
MODELING-DEF-DES-MI-VI.sln

@ -0,0 +1,25 @@

Microsoft Visual Studio Solution File, Format Version 12.00
# Visual Studio 15
VisualStudioVersion = 15.0.28307.136
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "MODELING-DEF-DES-MI-VI", "Pores\MODELING-DEF-DES-MI-VI.csproj", "{12EAD304-2155-4F18-8373-3EEA60798B8D}"
EndProject
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
Release|Any CPU = Release|Any CPU
EndGlobalSection
GlobalSection(ProjectConfigurationPlatforms) = postSolution
{12EAD304-2155-4F18-8373-3EEA60798B8D}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{12EAD304-2155-4F18-8373-3EEA60798B8D}.Debug|Any CPU.Build.0 = Debug|Any CPU
{12EAD304-2155-4F18-8373-3EEA60798B8D}.Release|Any CPU.ActiveCfg = Release|Any CPU
{12EAD304-2155-4F18-8373-3EEA60798B8D}.Release|Any CPU.Build.0 = Release|Any CPU
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
EndGlobalSection
GlobalSection(ExtensibilityGlobals) = postSolution
SolutionGuid = {740ACE1D-F83D-4181-9888-B3EA705A5E70}
EndGlobalSection
EndGlobal

4
Pores/App.xaml

@ -1,7 +1,7 @@
<Application x:Class="Pores.App" <Application x:Class="MODELING_DEF_DES_MI_VI.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:Pores" xmlns:local="clr-namespace:MODELING_DEF_DES_MI_VI"
StartupUri="MainWindow.xaml"> StartupUri="MainWindow.xaml">
<Application.Resources> <Application.Resources>

2
Pores/App.xaml.cs

@ -1,6 +1,6 @@
using System.Windows; using System.Windows;
namespace Pores namespace MODELING_DEF_DES_MI_VI
{ {
public partial class App : Application public partial class App : Application
{ {

10
Pores/Bootstrap.cs

@ -1,8 +1,8 @@
using Autofac; using Autofac;
using Pores.Controllers; using MODELING_DEF_DES_MI_VI.Controllers;
using Pores.Interfaces; using MODELING_DEF_DES_MI_VI.Interfaces;
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using Pores.Models.Spreads; using MODELING_DEF_DES_MI_VI.Models.Spreads;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
@ -10,7 +10,7 @@ using System.Linq;
using System.Text; using System.Text;
using System.Threading.Tasks; using System.Threading.Tasks;
namespace Pores namespace MODELING_DEF_DES_MI_VI
{ {
public class Bootstrap public class Bootstrap
{ {

2
Pores/Controllers/BaseSaveLoadController.cs

@ -1,4 +1,4 @@
namespace Pores.Controllers namespace MODELING_DEF_DES_MI_VI.Controllers
{ {
public abstract class BaseSaveLoadController public abstract class BaseSaveLoadController
{ {

4
Pores/Controllers/BatchGenerator.cs

@ -1,9 +1,9 @@
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace Pores.Controllers namespace MODELING_DEF_DES_MI_VI.Controllers
{ {
public class BatchGenerator public class BatchGenerator
{ {

4
Pores/Controllers/ConnectedPoreReportGenerator.cs

@ -1,9 +1,9 @@
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
namespace Pores.Controllers namespace MODELING_DEF_DES_MI_VI.Controllers
{ {
public class ConnectedPoreReportGenerator public class ConnectedPoreReportGenerator
{ {

8
Pores/Controllers/PoreGenerator.cs

@ -1,9 +1,9 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
using Pores.Interfaces; using MODELING_DEF_DES_MI_VI.Interfaces;
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System.Collections.Generic; using System.Collections.Generic;
namespace Pores.Controllers namespace MODELING_DEF_DES_MI_VI.Controllers
{ {
public class PoreGenerator : PropertyChangedClass, IPoreGenerator public class PoreGenerator : PropertyChangedClass, IPoreGenerator
{ {

6
Pores/Controllers/ReportGenerator.cs

@ -1,14 +1,14 @@
using Microsoft.Win32; using Microsoft.Win32;
using Newtonsoft.Json; using Newtonsoft.Json;
using Pores.Interfaces; using MODELING_DEF_DES_MI_VI.Interfaces;
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO; using System.IO;
using System.Linq; using System.Linq;
using System.Windows; using System.Windows;
namespace Pores.Controllers namespace MODELING_DEF_DES_MI_VI.Controllers
{ {
public class ReportGenerator : BaseSaveLoadController public class ReportGenerator : BaseSaveLoadController
{ {

2
Pores/Helpers/PropertyChanged.cs

@ -2,7 +2,7 @@
using System.ComponentModel; using System.ComponentModel;
using System.Runtime.CompilerServices; using System.Runtime.CompilerServices;
namespace Pores.Helpers namespace MODELING_DEF_DES_MI_VI.Helpers
{ {
[Serializable] [Serializable]
public class PropertyChangedClass : INotifyPropertyChanged public class PropertyChangedClass : INotifyPropertyChanged

2
Pores/Helpers/RelayCommand.cs

@ -1,7 +1,7 @@
using System; using System;
using System.Windows.Input; using System.Windows.Input;
namespace Pores.Helpers namespace MODELING_DEF_DES_MI_VI.Helpers
{ {
public class RelayCommand<T> : ICommand public class RelayCommand<T> : ICommand
{ {

4
Pores/Interfaces/IPoreGenerator.cs

@ -1,7 +1,7 @@
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System.Collections.Generic; using System.Collections.Generic;
namespace Pores.Interfaces namespace MODELING_DEF_DES_MI_VI.Interfaces
{ {
public interface IPoreGenerator public interface IPoreGenerator
{ {

4
Pores/Interfaces/IPoreSpread.cs

@ -1,7 +1,7 @@
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace Pores.Interfaces namespace MODELING_DEF_DES_MI_VI.Interfaces
{ {
public interface IPoreSpread public interface IPoreSpread
{ {

0
Pores/Pores.csproj → Pores/MODELING-DEF-DES-MI-VI.csproj

4
Pores/MainWindow.xaml

@ -1,9 +1,9 @@
<Window x:Class="Pores.MainWindow" <Window x:Class="MODELING_DEF_DES_MI_VI.MainWindow"
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:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:spreads="clr-namespace:Pores.Models.Spreads" xmlns:spreads="clr-namespace:MODELING_DEF_DES_MI_VI.Models.Spreads"
mc:Ignorable="d" mc:Ignorable="d"
Title="Pores" Height="600" Width="1000"> Title="Pores" Height="600" Width="1000">
<Grid> <Grid>

2
Pores/MainWindow.xaml.cs

@ -2,7 +2,7 @@
using Autofac; using Autofac;
using System.Windows; using System.Windows;
namespace Pores namespace MODELING_DEF_DES_MI_VI
{ {
public partial class MainWindow : Window public partial class MainWindow : Window
{ {

10
Pores/MainWindowViewModel.cs

@ -1,7 +1,7 @@
using Pores.Controllers; using MODELING_DEF_DES_MI_VI.Controllers;
using Pores.Interfaces; using MODELING_DEF_DES_MI_VI.Interfaces;
using Pores.Models; using MODELING_DEF_DES_MI_VI.Models;
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
using System.Windows.Input; using System.Windows.Input;
using System.Collections.Generic; using System.Collections.Generic;
using System.Threading; using System.Threading;
@ -9,7 +9,7 @@ using System.IO;
using System.Diagnostics; using System.Diagnostics;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace Pores namespace MODELING_DEF_DES_MI_VI
{ {
public class MainWindowViewModel : PropertyChangedClass public class MainWindowViewModel : PropertyChangedClass
{ {

4
Pores/Models/BatchPoint.cs

@ -1,6 +1,6 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
public class BatchPoint : PropertyChangedClass public class BatchPoint : PropertyChangedClass
{ {

4
Pores/Models/Material.cs

@ -1,6 +1,6 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
public class MaterialModel : PropertyChangedClass public class MaterialModel : PropertyChangedClass
{ {

4
Pores/Models/Point.cs

@ -1,6 +1,6 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
public class Point : PropertyChangedClass public class Point : PropertyChangedClass
{ {

4
Pores/Models/Point2D.cs

@ -1,6 +1,6 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
public class Point2D : Point public class Point2D : Point
{ {

4
Pores/Models/Point3D.cs

@ -1,8 +1,8 @@
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
using System; using System;
using System.Collections.Generic; using System.Collections.Generic;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
[Serializable] [Serializable]
public class Point3D : Point2D public class Point3D : Point2D

2
Pores/Models/Pore.cs

@ -1,6 +1,6 @@
using System; using System;
namespace Pores.Models namespace MODELING_DEF_DES_MI_VI.Models
{ {
[Serializable] [Serializable]
public class Pore public class Pore

6
Pores/Models/Spreads/BaseSpread.cs

@ -1,8 +1,8 @@
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
using Pores.Helpers; using MODELING_DEF_DES_MI_VI.Helpers;
using Pores.Interfaces; using MODELING_DEF_DES_MI_VI.Interfaces;
namespace Pores.Models.Spreads namespace MODELING_DEF_DES_MI_VI.Models.Spreads
{ {
public abstract class BaseSpread : PropertyChangedClass, IPoreSpread public abstract class BaseSpread : PropertyChangedClass, IPoreSpread
{ {

2
Pores/Models/Spreads/NormalSpread.cs

@ -1,7 +1,7 @@
using System; using System;
using System.Collections.ObjectModel; using System.Collections.ObjectModel;
namespace Pores.Models.Spreads namespace MODELING_DEF_DES_MI_VI.Models.Spreads
{ {
public class NormalSpread : BaseSpread public class NormalSpread : BaseSpread
{ {

2
Pores/Properties/Resources.Designer.cs

@ -8,7 +8,7 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace Pores.Properties namespace MODELING_DEF_DES_MI_VI.Properties
{ {

2
Pores/Properties/Settings.Designer.cs

@ -8,7 +8,7 @@
// </auto-generated> // </auto-generated>
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
namespace Pores.Properties namespace MODELING_DEF_DES_MI_VI.Properties
{ {

Loading…
Cancel
Save