diff --git a/App.config b/App.config
new file mode 100644
index 0000000..787dcbe
--- /dev/null
+++ b/App.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/App.xaml b/App.xaml
new file mode 100644
index 0000000..da83005
--- /dev/null
+++ b/App.xaml
@@ -0,0 +1,9 @@
+
+
+
+
+
diff --git a/App.xaml.cs b/App.xaml.cs
new file mode 100644
index 0000000..bad167d
--- /dev/null
+++ b/App.xaml.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Configuration;
+using System.Data;
+using System.Linq;
+using System.Threading.Tasks;
+using System.Windows;
+
+namespace PhysFormuler
+{
+ ///
+ /// Логика взаимодействия для App.xaml
+ ///
+ public partial class App : Application
+ {
+ }
+}
diff --git a/MainWindow.xaml b/MainWindow.xaml
new file mode 100644
index 0000000..007c0a9
--- /dev/null
+++ b/MainWindow.xaml
@@ -0,0 +1,74 @@
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+ 0
+
+
+
+
+
+
+
diff --git a/MainWindow.xaml.cs b/MainWindow.xaml.cs
new file mode 100644
index 0000000..10e18bc
--- /dev/null
+++ b/MainWindow.xaml.cs
@@ -0,0 +1,303 @@
+using System;
+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;
+using System.Threading;
+
+namespace PhysFormuler
+{
+ ///
+ /// Логика взаимодействия для MainWindow.xaml
+ ///
+ public partial class MainWindow : Window
+ {
+ public MainWindow()
+ {
+ InitializeComponent();
+ }
+
+ private void Log(string s)
+ {
+ Console.WriteLine(s);
+ Logger.Items.Add(s);
+ Thread.Sleep(100);
+ }
+
+ private bool IsReady(TextBox box,string type)
+ {
+ if(type != "T")
+ {
+ if(box.Text != "")
+ {
+ if(Convert.ToDouble(box.Text) != 0)
+ {
+ return true;
+ } else
+ {
+ return false;
+ }
+ } else
+ {
+ return false;
+ }
+ } else
+ {
+ if(box.Text != "")
+ {
+ return true;
+ } else
+ {
+ return false;
+ }
+ }
+ }
+
+ private void Update(string type)
+ {
+ try
+ {
+ switch (type)
+ {
+ case "U":
+ if (IsReady(U,type))
+ {
+ if (IsReady(R, type))
+ {
+ I.Text = Math.Round(Convert.ToDouble(U.Text) / Convert.ToDouble(R.Text),4).ToString();
+ Log(U.Text + " В / " + R.Text + " Ом = " + I.Text + " А");
+ }
+ if (IsReady(I, type))
+ {
+ R.Text = Math.Round(Convert.ToDouble(U.Text) / Convert.ToDouble(I.Text),4).ToString();
+ Log(U.Text + " В / " + I.Text + " А = " + R.Text + " Ом");
+ }
+ if (IsReady(q, type))
+ {
+ A.Text = Math.Round(Convert.ToDouble(U.Text) * Convert.ToDouble(q.Text),4).ToString();
+ Log(U.Text + " В * " + q.Text + " Кл = " + A.Text + " А");
+ }
+ if (IsReady(A, type))
+ {
+ q.Text = Math.Round(Convert.ToDouble(A.Text) / Convert.ToDouble(U.Text),4).ToString();
+ Log(A.Text + " А / " + U.Text + " В = " + q.Text + " Кл");
+ }
+ }
+ break;
+ case "R":
+ if(IsReady(R, type))
+ {
+ if(IsReady(U, type))
+ {
+ I.Text = Math.Round(Convert.ToDouble(U.Text) / Convert.ToDouble(R.Text),4).ToString();
+ Log(U.Text + " В / " + R.Text + " Ом = " + I.Text + " А");
+ }
+ if(IsReady(I, type))
+ {
+ U.Text = Math.Round(Convert.ToDouble(I.Text) * Convert.ToDouble(R.Text),4).ToString();
+ Log(I.Text + " А * " + R.Text + " Ом = " + U.Text + " В");
+ }
+ if(IsReady(S,type))
+ {
+ if(IsReady(p,type))
+ {
+ l.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(p.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text +" мм^2 / " + p.Text + " Ом*м = " + l.Text + " м");
+ }
+ if(IsReady(l,type))
+ {
+ p.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(l.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text + " мм^2 / " + l.Text + " м = " + p.Text + " Ом*м");
+ }
+ }
+ if(IsReady(p,type))
+ {
+ if(IsReady(l,type))
+ {
+ S.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(R.Text),4).ToString();
+ Log(p.Text + " Ом*м * " + l.Text + " м / " + R.Text + " Ом = " + S.Text + " мм^2");
+ }
+ }
+ }
+ break;
+ case "I":
+ if(IsReady(I, type))
+ {
+ if (IsReady(R, type))
+ {
+ U.Text = Math.Round(Convert.ToDouble(I.Text) * Convert.ToDouble(R.Text),4).ToString();
+ Log(I.Text + " А * " + R.Text + " Ом = " + U.Text + " В");
+ }
+ if (IsReady(U, type))
+ {
+ R.Text = Math.Round(Convert.ToDouble(U.Text) / Convert.ToDouble(I.Text),4).ToString();
+ Log(U.Text + " В / " + I.Text + " А = " + R.Text + " Ом");
+ }
+ if(IsReady(q, type))
+ {
+ t.Text = Math.Round(Convert.ToDouble(q.Text) / Convert.ToDouble(I.Text),4).ToString();
+ Log(q.Text + " Кл / " + I.Text + " А = " + t.Text + " Сек");
+ }
+ if(IsReady(t, type))
+ {
+ q.Text = Math.Round(Convert.ToDouble(I.Text) * Convert.ToDouble(t.Text),4).ToString();
+ Log(I.Text + " А * " + t.Text + " Сек = " + q.Text + " Кл");
+ }
+ }
+ break;
+ case "q":
+ if(IsReady(q, type))
+ {
+ if(IsReady(U, type))
+ {
+ A.Text = Math.Round(Convert.ToDouble(U.Text) * Convert.ToDouble(q.Text),4).ToString();
+ Log(U.Text + " В * " + q.Text + " Кл = " + A.Text + " Дж");
+ }
+ if(IsReady(I, type))
+ {
+ t.Text = Math.Round(Convert.ToDouble(q.Text) / Convert.ToDouble(I.Text),4).ToString();
+ Log(q.Text + " Кл / " + I.Text + " А = " + t.Text + " Сек");
+ }
+ if(IsReady(t, type))
+ {
+ I.Text = Math.Round(Convert.ToDouble(q.Text) / Convert.ToDouble(t.Text),4).ToString();
+ Log(q.Text + " Кл / " + t.Text + " Сек = " + I.Text + " А");
+ }
+ if(IsReady(A, type))
+ {
+ U.Text = Math.Round(Convert.ToDouble(A.Text) * Convert.ToDouble(q.Text),4).ToString();
+ Log(A.Text + " Дж * " + q.Text + " Кл = " + U.Text + " В");
+ }
+ }
+ break;
+ case "A":
+ if(IsReady(A, type))
+ {
+ if(IsReady(U, type))
+ {
+ q.Text = Math.Round(Convert.ToDouble(A.Text) / Convert.ToDouble(U.Text),4).ToString();
+ Log(A.Text + " Дж / " + U.Text + " В = " + q.Text + " Кл");
+ }
+ if(IsReady(q, type))
+ {
+ U.Text = Math.Round(Convert.ToDouble(A.Text) * Convert.ToDouble(q.Text),4).ToString();
+ Log(A.Text + " Дж * " + q.Text + " Кл = " + U.Text + " В");
+ }
+ }
+ break;
+ case "t":
+ if(IsReady(t, type))
+ {
+ if(IsReady(I, type))
+ {
+ q.Text = Math.Round(Convert.ToDouble(I.Text) * Convert.ToDouble(t.Text),4).ToString();
+ Log(I.Text + " А * " + t.Text + " Сек = " + q.Text + " Кл");
+ }
+ if(IsReady(q, type))
+ {
+ I.Text = Math.Round(Convert.ToDouble(q.Text) / Convert.ToDouble(t.Text),4).ToString();
+ Log(q.Text + " Кл / " + t.Text + " Сек = " + I.Text + " А");
+ }
+ }
+ break;
+ case "p":
+ if(IsReady(p,type))
+ {
+ if(IsReady(l,type))
+ {
+ if(IsReady(S,type))
+ {
+ R.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(S.Text),4).ToString();
+ Log(p.Text + " Кл * " + l.Text + " м / " + S.Text + " мм^2 = " + R.Text + " Ом");
+ }
+ if(IsReady(R,type))
+ {
+ S.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(R.Text),4).ToString();
+ Log(p.Text + " Кл * " + l.Text + " м / " + R.Text + " Ом = " + S.Text + " мм^2");
+ }
+ }
+ if(IsReady(R,type))
+ {
+ if(IsReady(S,type))
+ {
+ l.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(p.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text + " мм^2 / " + p.Text + " Кл = " + l.Text + " м");
+ }
+ }
+ }
+ break;
+ case "l":
+ if(IsReady(l,type))
+ {
+ if(IsReady(p,type))
+ {
+ if(IsReady(S,type))
+ {
+ R.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(S.Text),4).ToString();
+ Log(p.Text + " Кл * " + l.Text + " м / " + S.Text + " мм^2 = " + R.Text + " Ом");
+ }
+ if(IsReady(R,type))
+ {
+ S.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(R.Text),4).ToString();
+ Log(p.Text + " Кл * " + l.Text + " м / " + R.Text + " Ом = " + S.Text + " мм^2");
+ }
+ }
+ if(IsReady(R,type))
+ {
+ if(IsReady(S,type))
+ {
+ p.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(l.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text + " мм^2 / " + l.Text + " м = " + p.Text + " Кл");
+ }
+ }
+ }
+ break;
+ case "S":
+ if(IsReady(S,type))
+ {
+ if(IsReady(p,type))
+ {
+ if(IsReady(l,type))
+ {
+ R.Text = Math.Round(Convert.ToDouble(p.Text) * Convert.ToDouble(l.Text) / Convert.ToDouble(S.Text),4).ToString();
+ Log(p.Text + " Кл * " + l.Text + " м / " + S.Text + " мм^2 = " + R.Text + " Ом");
+ }
+ if(IsReady(R,type))
+ {
+ l.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(p.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text + " мм^2 / " + p.Text + " Кл = " + l.Text + " м");
+ }
+ }
+ if(IsReady(R,type))
+ {
+ if(IsReady(l,type))
+ {
+ p.Text = Math.Round(Convert.ToDouble(R.Text) * Convert.ToDouble(S.Text) / Convert.ToDouble(l.Text),4).ToString();
+ Log(R.Text + " Ом * " + S.Text + " мм^2 / " + l.Text + " м = " + p.Text + " Кл");
+ }
+ }
+ }
+ break;
+ }
+ } catch
+ {
+
+ }
+ }
+
+ private void TC(object sender, TextChangedEventArgs e)
+ {
+ TextBox s = (TextBox)sender;
+ Update(s.Name);
+ }
+ }
+}
diff --git a/PhysFormuler.csproj b/PhysFormuler.csproj
new file mode 100644
index 0000000..8ad41c4
--- /dev/null
+++ b/PhysFormuler.csproj
@@ -0,0 +1,98 @@
+
+
+
+
+ Debug
+ AnyCPU
+ {4A18C2F6-550F-43B8-A794-A958E38BFBDC}
+ WinExe
+ PhysFormuler
+ PhysFormuler
+ v4.7.1
+ 512
+ {60dc8134-eba5-43b8-bcc9-bb4bc16c2548};{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}
+ 4
+ true
+ true
+
+
+ AnyCPU
+ true
+ full
+ false
+ bin\Debug\
+ DEBUG;TRACE
+ prompt
+ 4
+
+
+ AnyCPU
+ pdbonly
+ true
+ bin\Release\
+ TRACE
+ prompt
+ 4
+
+
+
+
+
+
+
+
+
+
+
+ 4.0
+
+
+
+
+
+
+
+ MSBuild:Compile
+ Designer
+
+
+ MSBuild:Compile
+ Designer
+
+
+ App.xaml
+ Code
+
+
+ MainWindow.xaml
+ Code
+
+
+
+
+ Code
+
+
+ True
+ True
+ Resources.resx
+
+
+ True
+ Settings.settings
+ True
+
+
+ ResXFileCodeGenerator
+ Resources.Designer.cs
+
+
+ SettingsSingleFileGenerator
+ Settings.Designer.cs
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Properties/AssemblyInfo.cs b/Properties/AssemblyInfo.cs
new file mode 100644
index 0000000..17bac71
--- /dev/null
+++ b/Properties/AssemblyInfo.cs
@@ -0,0 +1,55 @@
+using System.Reflection;
+using System.Resources;
+using System.Runtime.CompilerServices;
+using System.Runtime.InteropServices;
+using System.Windows;
+
+// Общие сведения об этой сборке предоставляются следующим набором
+// набора атрибутов. Измените значения этих атрибутов, чтобы изменить сведения,
+// связанные со сборкой.
+[assembly: AssemblyTitle("PhysFormuler")]
+[assembly: AssemblyDescription("")]
+[assembly: AssemblyConfiguration("")]
+[assembly: AssemblyCompany("")]
+[assembly: AssemblyProduct("PhysFormuler")]
+[assembly: AssemblyCopyright("Copyright © 2019")]
+[assembly: AssemblyTrademark("")]
+[assembly: AssemblyCulture("")]
+
+// Установка значения False для параметра ComVisible делает типы в этой сборке невидимыми
+// для компонентов COM. Если необходимо обратиться к типу в этой сборке через
+// COM, задайте атрибуту ComVisible значение TRUE для этого типа.
+[assembly: ComVisible(false)]
+
+//Чтобы начать создание локализуемых приложений, задайте
+//CultureYouAreCodingWith в файле .csproj
+//внутри . Например, если используется английский США
+//в своих исходных файлах установите в en-US. Затем отмените преобразование в комментарий
+//атрибута NeutralResourceLanguage ниже. Обновите "en-US" в
+//строка внизу для обеспечения соответствия настройки UICulture в файле проекта.
+
+//[assembly: NeutralResourcesLanguage("en-US", UltimateResourceFallbackLocation.Satellite)]
+
+
+[assembly: ThemeInfo(
+ ResourceDictionaryLocation.None, //где расположены словари ресурсов по конкретным тематикам
+ //(используется, если ресурс не найден на странице,
+ // или в словарях ресурсов приложения)
+ ResourceDictionaryLocation.SourceAssembly //где расположен словарь универсальных ресурсов
+ //(используется, если ресурс не найден на странице,
+ // в приложении или в каких-либо словарях ресурсов для конкретной темы)
+)]
+
+
+// Сведения о версии сборки состоят из следующих четырех значений:
+//
+// Основной номер версии
+// Дополнительный номер версии
+// Номер сборки
+// Редакция
+//
+// Можно задать все значения или принять номер сборки и номер редакции по умолчанию.
+// используя "*", как показано ниже:
+// [assembly: AssemblyVersion("1.0.*")]
+[assembly: AssemblyVersion("1.0.0.0")]
+[assembly: AssemblyFileVersion("1.0.0.0")]
diff --git a/Properties/Resources.Designer.cs b/Properties/Resources.Designer.cs
new file mode 100644
index 0000000..c4bba6f
--- /dev/null
+++ b/Properties/Resources.Designer.cs
@@ -0,0 +1,71 @@
+//------------------------------------------------------------------------------
+//
+// Этот код создан программным средством.
+// Версия среды выполнения: 4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильному поведению и будут утрачены, если
+// код создан повторно.
+//
+//------------------------------------------------------------------------------
+
+namespace PhysFormuler.Properties
+{
+
+
+ ///
+ /// Класс ресурсов со строгим типом для поиска локализованных строк и пр.
+ ///
+ // Этот класс был автоматически создан при помощи StronglyTypedResourceBuilder
+ // класс с помощью таких средств, как ResGen или Visual Studio.
+ // Для добавления или удаления члена измените файл .ResX, а затем перезапустите ResGen
+ // с параметром /str или заново постройте свой VS-проект.
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")]
+ [global::System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ internal class Resources
+ {
+
+ private static global::System.Resources.ResourceManager resourceMan;
+
+ private static global::System.Globalization.CultureInfo resourceCulture;
+
+ [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")]
+ internal Resources()
+ {
+ }
+
+ ///
+ /// Возврат кэшированного экземпляра ResourceManager, используемого этим классом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Resources.ResourceManager ResourceManager
+ {
+ get
+ {
+ if ((resourceMan == null))
+ {
+ global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PhysFormuler.Properties.Resources", typeof(Resources).Assembly);
+ resourceMan = temp;
+ }
+ return resourceMan;
+ }
+ }
+
+ ///
+ /// Переопределяет свойство CurrentUICulture текущего потока для всех
+ /// подстановки ресурсов с помощью этого класса ресурсов со строгим типом.
+ ///
+ [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)]
+ internal static global::System.Globalization.CultureInfo Culture
+ {
+ get
+ {
+ return resourceCulture;
+ }
+ set
+ {
+ resourceCulture = value;
+ }
+ }
+ }
+}
diff --git a/Properties/Resources.resx b/Properties/Resources.resx
new file mode 100644
index 0000000..af7dbeb
--- /dev/null
+++ b/Properties/Resources.resx
@@ -0,0 +1,117 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ text/microsoft-resx
+
+
+ 2.0
+
+
+ System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
+ System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089
+
+
\ No newline at end of file
diff --git a/Properties/Settings.Designer.cs b/Properties/Settings.Designer.cs
new file mode 100644
index 0000000..7fee60d
--- /dev/null
+++ b/Properties/Settings.Designer.cs
@@ -0,0 +1,30 @@
+//------------------------------------------------------------------------------
+//
+// This code was generated by a tool.
+// Runtime Version:4.0.30319.42000
+//
+// Changes to this file may cause incorrect behavior and will be lost if
+// the code is regenerated.
+//
+//------------------------------------------------------------------------------
+
+namespace PhysFormuler.Properties
+{
+
+
+ [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()]
+ [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")]
+ internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase
+ {
+
+ private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings())));
+
+ public static Settings Default
+ {
+ get
+ {
+ return defaultInstance;
+ }
+ }
+ }
+}
diff --git a/Properties/Settings.settings b/Properties/Settings.settings
new file mode 100644
index 0000000..033d7a5
--- /dev/null
+++ b/Properties/Settings.settings
@@ -0,0 +1,7 @@
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Debug/PhysFormuler.exe.config b/bin/Debug/PhysFormuler.exe.config
new file mode 100644
index 0000000..787dcbe
--- /dev/null
+++ b/bin/Debug/PhysFormuler.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/bin/Release.rar b/bin/Release.rar
new file mode 100644
index 0000000..a9a32cc
Binary files /dev/null and b/bin/Release.rar differ
diff --git a/bin/Release/PhysFormuler.exe.config b/bin/Release/PhysFormuler.exe.config
new file mode 100644
index 0000000..787dcbe
--- /dev/null
+++ b/bin/Release/PhysFormuler.exe.config
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/obj/Debug/App.g.cs b/obj/Debug/App.g.cs
new file mode 100644
index 0000000..022a3f4
--- /dev/null
+++ b/obj/Debug/App.g.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC7C2D608DE8DFDBE203A54118EB5EE369C484E3"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ PhysFormuler.App app = new PhysFormuler.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Debug/App.g.i.cs b/obj/Debug/App.g.i.cs
new file mode 100644
index 0000000..022a3f4
--- /dev/null
+++ b/obj/Debug/App.g.i.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC7C2D608DE8DFDBE203A54118EB5EE369C484E3"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ PhysFormuler.App app = new PhysFormuler.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Debug/MainWindow.baml b/obj/Debug/MainWindow.baml
new file mode 100644
index 0000000..0836fb5
Binary files /dev/null and b/obj/Debug/MainWindow.baml differ
diff --git a/obj/Debug/MainWindow.g.cs b/obj/Debug/MainWindow.g.cs
new file mode 100644
index 0000000..68c3509
--- /dev/null
+++ b/obj/Debug/MainWindow.g.cs
@@ -0,0 +1,248 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CC0A0916C214BEC2ABB76527EE89F66AC08038FC"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox U;
+
+ #line default
+ #line hidden
+
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox R;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox I;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox q;
+
+ #line default
+ #line hidden
+
+
+ #line 35 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox t;
+
+ #line default
+ #line hidden
+
+
+ #line 41 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox A;
+
+ #line default
+ #line hidden
+
+
+ #line 47 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox T;
+
+ #line default
+ #line hidden
+
+
+ #line 53 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox p;
+
+ #line default
+ #line hidden
+
+
+ #line 59 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox l;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox S;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PhysFormuler;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.U = ((System.Windows.Controls.TextBox)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.U.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.R = ((System.Windows.Controls.TextBox)(target));
+
+ #line 17 "..\..\MainWindow.xaml"
+ this.R.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.I = ((System.Windows.Controls.TextBox)(target));
+
+ #line 23 "..\..\MainWindow.xaml"
+ this.I.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.q = ((System.Windows.Controls.TextBox)(target));
+
+ #line 29 "..\..\MainWindow.xaml"
+ this.q.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.t = ((System.Windows.Controls.TextBox)(target));
+
+ #line 35 "..\..\MainWindow.xaml"
+ this.t.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.A = ((System.Windows.Controls.TextBox)(target));
+
+ #line 41 "..\..\MainWindow.xaml"
+ this.A.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+ this.T = ((System.Windows.Controls.TextBox)(target));
+
+ #line 47 "..\..\MainWindow.xaml"
+ this.T.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+ this.p = ((System.Windows.Controls.TextBox)(target));
+
+ #line 53 "..\..\MainWindow.xaml"
+ this.p.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+ this.l = ((System.Windows.Controls.TextBox)(target));
+
+ #line 59 "..\..\MainWindow.xaml"
+ this.l.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+ this.S = ((System.Windows.Controls.TextBox)(target));
+
+ #line 65 "..\..\MainWindow.xaml"
+ this.S.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Debug/MainWindow.g.i.cs b/obj/Debug/MainWindow.g.i.cs
new file mode 100644
index 0000000..68c3509
--- /dev/null
+++ b/obj/Debug/MainWindow.g.i.cs
@@ -0,0 +1,248 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "CC0A0916C214BEC2ABB76527EE89F66AC08038FC"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox U;
+
+ #line default
+ #line hidden
+
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox R;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox I;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox q;
+
+ #line default
+ #line hidden
+
+
+ #line 35 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox t;
+
+ #line default
+ #line hidden
+
+
+ #line 41 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox A;
+
+ #line default
+ #line hidden
+
+
+ #line 47 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox T;
+
+ #line default
+ #line hidden
+
+
+ #line 53 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox p;
+
+ #line default
+ #line hidden
+
+
+ #line 59 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox l;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox S;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PhysFormuler;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.U = ((System.Windows.Controls.TextBox)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.U.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.R = ((System.Windows.Controls.TextBox)(target));
+
+ #line 17 "..\..\MainWindow.xaml"
+ this.R.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.I = ((System.Windows.Controls.TextBox)(target));
+
+ #line 23 "..\..\MainWindow.xaml"
+ this.I.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.q = ((System.Windows.Controls.TextBox)(target));
+
+ #line 29 "..\..\MainWindow.xaml"
+ this.q.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.t = ((System.Windows.Controls.TextBox)(target));
+
+ #line 35 "..\..\MainWindow.xaml"
+ this.t.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.A = ((System.Windows.Controls.TextBox)(target));
+
+ #line 41 "..\..\MainWindow.xaml"
+ this.A.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+ this.T = ((System.Windows.Controls.TextBox)(target));
+
+ #line 47 "..\..\MainWindow.xaml"
+ this.T.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+ this.p = ((System.Windows.Controls.TextBox)(target));
+
+ #line 53 "..\..\MainWindow.xaml"
+ this.p.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+ this.l = ((System.Windows.Controls.TextBox)(target));
+
+ #line 59 "..\..\MainWindow.xaml"
+ this.l.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+ this.S = ((System.Windows.Controls.TextBox)(target));
+
+ #line 65 "..\..\MainWindow.xaml"
+ this.S.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Debug/PhysFormuler.Properties.Resources.resources b/obj/Debug/PhysFormuler.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Debug/PhysFormuler.Properties.Resources.resources differ
diff --git a/obj/Debug/PhysFormuler.csproj.FileListAbsolute.txt b/obj/Debug/PhysFormuler.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..89e6bc3
--- /dev/null
+++ b/obj/Debug/PhysFormuler.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Debug\PhysFormuler.exe.config
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Debug\PhysFormuler.exe
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Debug\PhysFormuler.pdb
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.csprojAssemblyReference.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\MainWindow.g.cs
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\App.g.cs
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler_MarkupCompile.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler_MarkupCompile.lref
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\MainWindow.baml
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.g.resources
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.Properties.Resources.resources
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.csproj.GenerateResource.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.csproj.CoreCompileInputs.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.exe
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Debug\PhysFormuler.pdb
diff --git a/obj/Debug/PhysFormuler.g.resources b/obj/Debug/PhysFormuler.g.resources
new file mode 100644
index 0000000..0fe9136
Binary files /dev/null and b/obj/Debug/PhysFormuler.g.resources differ
diff --git a/obj/Debug/PhysFormuler_MarkupCompile.i.lref b/obj/Debug/PhysFormuler_MarkupCompile.i.lref
new file mode 100644
index 0000000..8b264cb
--- /dev/null
+++ b/obj/Debug/PhysFormuler_MarkupCompile.i.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\MainWindow.xaml;;
+
diff --git a/obj/Debug/PhysFormuler_MarkupCompile.lref b/obj/Debug/PhysFormuler_MarkupCompile.lref
new file mode 100644
index 0000000..8b264cb
--- /dev/null
+++ b/obj/Debug/PhysFormuler_MarkupCompile.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\MainWindow.xaml;;
+
diff --git a/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Release/App.g.cs b/obj/Release/App.g.cs
new file mode 100644
index 0000000..022a3f4
--- /dev/null
+++ b/obj/Release/App.g.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC7C2D608DE8DFDBE203A54118EB5EE369C484E3"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ PhysFormuler.App app = new PhysFormuler.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Release/App.g.i.cs b/obj/Release/App.g.i.cs
new file mode 100644
index 0000000..022a3f4
--- /dev/null
+++ b/obj/Release/App.g.i.cs
@@ -0,0 +1,70 @@
+#pragma checksum "..\..\App.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "BC7C2D608DE8DFDBE203A54118EB5EE369C484E3"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// App
+ ///
+ public partial class App : System.Windows.Application {
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+
+ #line 5 "..\..\App.xaml"
+ this.StartupUri = new System.Uri("MainWindow.xaml", System.UriKind.Relative);
+
+ #line default
+ #line hidden
+ }
+
+ ///
+ /// Application Entry Point.
+ ///
+ [System.STAThreadAttribute()]
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public static void Main() {
+ PhysFormuler.App app = new PhysFormuler.App();
+ app.InitializeComponent();
+ app.Run();
+ }
+ }
+}
+
diff --git a/obj/Release/MainWindow.baml b/obj/Release/MainWindow.baml
new file mode 100644
index 0000000..c7a1b26
Binary files /dev/null and b/obj/Release/MainWindow.baml differ
diff --git a/obj/Release/MainWindow.g.cs b/obj/Release/MainWindow.g.cs
new file mode 100644
index 0000000..8610cde
--- /dev/null
+++ b/obj/Release/MainWindow.g.cs
@@ -0,0 +1,259 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7753B25EBBD66BE430FC2FD0B52EBF5B1AD812A8"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox U;
+
+ #line default
+ #line hidden
+
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox R;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox I;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox q;
+
+ #line default
+ #line hidden
+
+
+ #line 35 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox t;
+
+ #line default
+ #line hidden
+
+
+ #line 41 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox A;
+
+ #line default
+ #line hidden
+
+
+ #line 47 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox T;
+
+ #line default
+ #line hidden
+
+
+ #line 53 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox p;
+
+ #line default
+ #line hidden
+
+
+ #line 59 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox l;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox S;
+
+ #line default
+ #line hidden
+
+
+ #line 71 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ListBox Logger;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PhysFormuler;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.U = ((System.Windows.Controls.TextBox)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.U.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.R = ((System.Windows.Controls.TextBox)(target));
+
+ #line 17 "..\..\MainWindow.xaml"
+ this.R.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.I = ((System.Windows.Controls.TextBox)(target));
+
+ #line 23 "..\..\MainWindow.xaml"
+ this.I.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.q = ((System.Windows.Controls.TextBox)(target));
+
+ #line 29 "..\..\MainWindow.xaml"
+ this.q.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.t = ((System.Windows.Controls.TextBox)(target));
+
+ #line 35 "..\..\MainWindow.xaml"
+ this.t.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.A = ((System.Windows.Controls.TextBox)(target));
+
+ #line 41 "..\..\MainWindow.xaml"
+ this.A.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+ this.T = ((System.Windows.Controls.TextBox)(target));
+
+ #line 47 "..\..\MainWindow.xaml"
+ this.T.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+ this.p = ((System.Windows.Controls.TextBox)(target));
+
+ #line 53 "..\..\MainWindow.xaml"
+ this.p.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+ this.l = ((System.Windows.Controls.TextBox)(target));
+
+ #line 59 "..\..\MainWindow.xaml"
+ this.l.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+ this.S = ((System.Windows.Controls.TextBox)(target));
+
+ #line 65 "..\..\MainWindow.xaml"
+ this.S.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 11:
+ this.Logger = ((System.Windows.Controls.ListBox)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Release/MainWindow.g.i.cs b/obj/Release/MainWindow.g.i.cs
new file mode 100644
index 0000000..8610cde
--- /dev/null
+++ b/obj/Release/MainWindow.g.i.cs
@@ -0,0 +1,259 @@
+#pragma checksum "..\..\MainWindow.xaml" "{ff1816ec-aa5e-4d10-87f7-6f4963833460}" "7753B25EBBD66BE430FC2FD0B52EBF5B1AD812A8"
+//------------------------------------------------------------------------------
+//
+// Этот код создан программой.
+// Исполняемая версия:4.0.30319.42000
+//
+// Изменения в этом файле могут привести к неправильной работе и будут потеряны в случае
+// повторной генерации кода.
+//
+//------------------------------------------------------------------------------
+
+using PhysFormuler;
+using System;
+using System.Diagnostics;
+using System.Windows;
+using System.Windows.Automation;
+using System.Windows.Controls;
+using System.Windows.Controls.Primitives;
+using System.Windows.Data;
+using System.Windows.Documents;
+using System.Windows.Ink;
+using System.Windows.Input;
+using System.Windows.Markup;
+using System.Windows.Media;
+using System.Windows.Media.Animation;
+using System.Windows.Media.Effects;
+using System.Windows.Media.Imaging;
+using System.Windows.Media.Media3D;
+using System.Windows.Media.TextFormatting;
+using System.Windows.Navigation;
+using System.Windows.Shapes;
+using System.Windows.Shell;
+
+
+namespace PhysFormuler {
+
+
+ ///
+ /// MainWindow
+ ///
+ public partial class MainWindow : System.Windows.Window, System.Windows.Markup.IComponentConnector {
+
+
+ #line 11 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox U;
+
+ #line default
+ #line hidden
+
+
+ #line 17 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox R;
+
+ #line default
+ #line hidden
+
+
+ #line 23 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox I;
+
+ #line default
+ #line hidden
+
+
+ #line 29 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox q;
+
+ #line default
+ #line hidden
+
+
+ #line 35 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox t;
+
+ #line default
+ #line hidden
+
+
+ #line 41 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox A;
+
+ #line default
+ #line hidden
+
+
+ #line 47 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox T;
+
+ #line default
+ #line hidden
+
+
+ #line 53 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox p;
+
+ #line default
+ #line hidden
+
+
+ #line 59 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox l;
+
+ #line default
+ #line hidden
+
+
+ #line 65 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.TextBox S;
+
+ #line default
+ #line hidden
+
+
+ #line 71 "..\..\MainWindow.xaml"
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1823:AvoidUnusedPrivateFields")]
+ internal System.Windows.Controls.ListBox Logger;
+
+ #line default
+ #line hidden
+
+ private bool _contentLoaded;
+
+ ///
+ /// InitializeComponent
+ ///
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ public void InitializeComponent() {
+ if (_contentLoaded) {
+ return;
+ }
+ _contentLoaded = true;
+ System.Uri resourceLocater = new System.Uri("/PhysFormuler;component/mainwindow.xaml", System.UriKind.Relative);
+
+ #line 1 "..\..\MainWindow.xaml"
+ System.Windows.Application.LoadComponent(this, resourceLocater);
+
+ #line default
+ #line hidden
+ }
+
+ [System.Diagnostics.DebuggerNonUserCodeAttribute()]
+ [System.CodeDom.Compiler.GeneratedCodeAttribute("PresentationBuildTasks", "4.0.0.0")]
+ [System.ComponentModel.EditorBrowsableAttribute(System.ComponentModel.EditorBrowsableState.Never)]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Design", "CA1033:InterfaceMethodsShouldBeCallableByChildTypes")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Maintainability", "CA1502:AvoidExcessiveComplexity")]
+ [System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1800:DoNotCastUnnecessarily")]
+ void System.Windows.Markup.IComponentConnector.Connect(int connectionId, object target) {
+ switch (connectionId)
+ {
+ case 1:
+ this.U = ((System.Windows.Controls.TextBox)(target));
+
+ #line 11 "..\..\MainWindow.xaml"
+ this.U.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 2:
+ this.R = ((System.Windows.Controls.TextBox)(target));
+
+ #line 17 "..\..\MainWindow.xaml"
+ this.R.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 3:
+ this.I = ((System.Windows.Controls.TextBox)(target));
+
+ #line 23 "..\..\MainWindow.xaml"
+ this.I.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 4:
+ this.q = ((System.Windows.Controls.TextBox)(target));
+
+ #line 29 "..\..\MainWindow.xaml"
+ this.q.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 5:
+ this.t = ((System.Windows.Controls.TextBox)(target));
+
+ #line 35 "..\..\MainWindow.xaml"
+ this.t.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 6:
+ this.A = ((System.Windows.Controls.TextBox)(target));
+
+ #line 41 "..\..\MainWindow.xaml"
+ this.A.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 7:
+ this.T = ((System.Windows.Controls.TextBox)(target));
+
+ #line 47 "..\..\MainWindow.xaml"
+ this.T.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 8:
+ this.p = ((System.Windows.Controls.TextBox)(target));
+
+ #line 53 "..\..\MainWindow.xaml"
+ this.p.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 9:
+ this.l = ((System.Windows.Controls.TextBox)(target));
+
+ #line 59 "..\..\MainWindow.xaml"
+ this.l.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 10:
+ this.S = ((System.Windows.Controls.TextBox)(target));
+
+ #line 65 "..\..\MainWindow.xaml"
+ this.S.TextChanged += new System.Windows.Controls.TextChangedEventHandler(this.TC);
+
+ #line default
+ #line hidden
+ return;
+ case 11:
+ this.Logger = ((System.Windows.Controls.ListBox)(target));
+ return;
+ }
+ this._contentLoaded = true;
+ }
+ }
+}
+
diff --git a/obj/Release/PhysFormuler.Properties.Resources.resources b/obj/Release/PhysFormuler.Properties.Resources.resources
new file mode 100644
index 0000000..6c05a97
Binary files /dev/null and b/obj/Release/PhysFormuler.Properties.Resources.resources differ
diff --git a/obj/Release/PhysFormuler.csproj.FileListAbsolute.txt b/obj/Release/PhysFormuler.csproj.FileListAbsolute.txt
new file mode 100644
index 0000000..81aa737
--- /dev/null
+++ b/obj/Release/PhysFormuler.csproj.FileListAbsolute.txt
@@ -0,0 +1,15 @@
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Release\PhysFormuler.exe.config
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Release\PhysFormuler.exe
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\bin\Release\PhysFormuler.pdb
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\MainWindow.g.cs
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\App.g.cs
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler_MarkupCompile.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler_MarkupCompile.lref
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\MainWindow.baml
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.g.resources
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.Properties.Resources.resources
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.csproj.GenerateResource.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.csproj.CoreCompileInputs.cache
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.exe
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.pdb
+C:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\obj\Release\PhysFormuler.csprojAssemblyReference.cache
diff --git a/obj/Release/PhysFormuler.g.resources b/obj/Release/PhysFormuler.g.resources
new file mode 100644
index 0000000..e987f62
Binary files /dev/null and b/obj/Release/PhysFormuler.g.resources differ
diff --git a/obj/Release/PhysFormuler_MarkupCompile.i.lref b/obj/Release/PhysFormuler_MarkupCompile.i.lref
new file mode 100644
index 0000000..8b264cb
--- /dev/null
+++ b/obj/Release/PhysFormuler_MarkupCompile.i.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\MainWindow.xaml;;
+
diff --git a/obj/Release/PhysFormuler_MarkupCompile.lref b/obj/Release/PhysFormuler_MarkupCompile.lref
new file mode 100644
index 0000000..8b264cb
--- /dev/null
+++ b/obj/Release/PhysFormuler_MarkupCompile.lref
@@ -0,0 +1,4 @@
+
+
+FC:\Users\Илья\Source\Repos\Dev_PhysFormuler\PhysFormuler\MainWindow.xaml;;
+
diff --git a/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs b/obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs b/obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs
new file mode 100644
index 0000000..e69de29
diff --git a/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs b/obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs
new file mode 100644
index 0000000..e69de29