From 6e12f10d851b57afac027081f7641cb64a2886fd Mon Sep 17 00:00:00 2001 From: RedGuy Date: Sun, 13 Oct 2019 01:29:26 +0300 Subject: [PATCH] Init --- App.config | 6 + App.xaml | 9 + App.xaml.cs | 17 + MainWindow.xaml | 74 +++++ MainWindow.xaml.cs | 303 ++++++++++++++++++ PhysFormuler.csproj | 98 ++++++ Properties/AssemblyInfo.cs | 55 ++++ Properties/Resources.Designer.cs | 71 ++++ Properties/Resources.resx | 117 +++++++ Properties/Settings.Designer.cs | 30 ++ Properties/Settings.settings | 7 + bin/Debug/PhysFormuler.exe.config | 6 + bin/Release.rar | Bin 0 -> 9815 bytes bin/Release/PhysFormuler.exe.config | 6 + obj/Debug/App.g.cs | 70 ++++ obj/Debug/App.g.i.cs | 70 ++++ obj/Debug/MainWindow.baml | Bin 0 -> 4532 bytes obj/Debug/MainWindow.g.cs | 248 ++++++++++++++ obj/Debug/MainWindow.g.i.cs | 248 ++++++++++++++ ...hysFormuler.Properties.Resources.resources | Bin 0 -> 180 bytes .../PhysFormuler.csproj.FileListAbsolute.txt | 15 + obj/Debug/PhysFormuler.g.resources | Bin 0 -> 4760 bytes obj/Debug/PhysFormuler_MarkupCompile.i.lref | 4 + obj/Debug/PhysFormuler_MarkupCompile.lref | 4 + ...le_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs | 0 ...le_5937a670-0e60-4077-877b-f7221da3dda1.cs | 0 ...le_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs | 0 obj/Release/App.g.cs | 70 ++++ obj/Release/App.g.i.cs | 70 ++++ obj/Release/MainWindow.baml | Bin 0 -> 3187 bytes obj/Release/MainWindow.g.cs | 259 +++++++++++++++ obj/Release/MainWindow.g.i.cs | 259 +++++++++++++++ ...hysFormuler.Properties.Resources.resources | Bin 0 -> 180 bytes .../PhysFormuler.csproj.FileListAbsolute.txt | 15 + obj/Release/PhysFormuler.g.resources | Bin 0 -> 3415 bytes obj/Release/PhysFormuler_MarkupCompile.i.lref | 4 + obj/Release/PhysFormuler_MarkupCompile.lref | 4 + ...le_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs | 0 ...le_5937a670-0e60-4077-877b-f7221da3dda1.cs | 0 ...le_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs | 0 40 files changed, 2139 insertions(+) create mode 100644 App.config create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 MainWindow.xaml create mode 100644 MainWindow.xaml.cs create mode 100644 PhysFormuler.csproj create mode 100644 Properties/AssemblyInfo.cs create mode 100644 Properties/Resources.Designer.cs create mode 100644 Properties/Resources.resx create mode 100644 Properties/Settings.Designer.cs create mode 100644 Properties/Settings.settings create mode 100644 bin/Debug/PhysFormuler.exe.config create mode 100644 bin/Release.rar create mode 100644 bin/Release/PhysFormuler.exe.config create mode 100644 obj/Debug/App.g.cs create mode 100644 obj/Debug/App.g.i.cs create mode 100644 obj/Debug/MainWindow.baml create mode 100644 obj/Debug/MainWindow.g.cs create mode 100644 obj/Debug/MainWindow.g.i.cs create mode 100644 obj/Debug/PhysFormuler.Properties.Resources.resources create mode 100644 obj/Debug/PhysFormuler.csproj.FileListAbsolute.txt create mode 100644 obj/Debug/PhysFormuler.g.resources create mode 100644 obj/Debug/PhysFormuler_MarkupCompile.i.lref create mode 100644 obj/Debug/PhysFormuler_MarkupCompile.lref create mode 100644 obj/Debug/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs create mode 100644 obj/Debug/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs create mode 100644 obj/Debug/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs create mode 100644 obj/Release/App.g.cs create mode 100644 obj/Release/App.g.i.cs create mode 100644 obj/Release/MainWindow.baml create mode 100644 obj/Release/MainWindow.g.cs create mode 100644 obj/Release/MainWindow.g.i.cs create mode 100644 obj/Release/PhysFormuler.Properties.Resources.resources create mode 100644 obj/Release/PhysFormuler.csproj.FileListAbsolute.txt create mode 100644 obj/Release/PhysFormuler.g.resources create mode 100644 obj/Release/PhysFormuler_MarkupCompile.i.lref create mode 100644 obj/Release/PhysFormuler_MarkupCompile.lref create mode 100644 obj/Release/TemporaryGeneratedFile_036C0B5B-1481-4323-8D20-8F5ADCB23D92.cs create mode 100644 obj/Release/TemporaryGeneratedFile_5937a670-0e60-4077-877b-f7221da3dda1.cs create mode 100644 obj/Release/TemporaryGeneratedFile_E7A71F73-0F8D-4B9B-B56E-8E70B10BC5D3.cs 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 + + + + 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 0000000000000000000000000000000000000000..a9a32ccb8533f2f5d64e31b7c64a5e7923bc9471 GIT binary patch literal 9815 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 O5pkH`2Sf-O + + + + + \ 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 0000000000000000000000000000000000000000..0836fb5499f56f993c5b19a2a46b1d67bd144880 GIT binary patch literal 4532 zcmb`J`*Raj6vuC}snCZ)p$bB21BQn*&E~b+q*$dC(ekpk#dbzSx9Ju#-8@LPL;D*A zXB=l3anKnDXH;+;f3Dg(47A}#{f(P{CBK*Tdv=pe(gX}ln{M`;dv@Em?|&1w2v zMjc41b9zS6yzY^?DJ>p5qb`i6X4T|Ca!%9s_Uwsinck$5P_tg!Xam?Q_Hp|I+YME3>`RR=M)kk!@1F(sQ-6I0s4 zK*`rDmchZKEyYmw?SsH}RR-!ir^J&J@#J*sngE;REI!(K(a9!9GHO;$>WU6hr!rXe zwNz&IC6*8hOwEKMlB`UJ13GrGyIWsQ?{eD@TR}z|-u3#oGCli>9b&fW%^VYB7 zo5VvevEGeY(9!Rh_r6GAF4k0xMxq~@GPC2jV>W3AYGL0wVSrE@9GeNUuVmK--%f{*Mip{1)V`m_VW@NO4Kq@J;Ixet*g&AT>F7 z4i}95{0`6YNBLX%8{!3#|HPO0f3;cNT>U%9(3(+iapdPz6e9g@6##dUv3 zgXJ}S3e`oVrFKY!y_fbj8@Y*j6qw1}IOcGm0`touC4S`4=C`vLK@GnS7%YCTL$dk3 z0fiQ1@%x#tilZXG4~!tkbNL&f_9uVzfBd#TFSUi6Z+lAg{b;kSrgs(e$lL%u(;roN=o$DXtNm-HYM1nv zP^qNv<4*b4g}aTf8w!O`gU^jY3*UZ7HogN;OngTQ#sU6g{w9d!_?mcCOH>#9OZ%qjvhC`Q6H)XHwbWKZV()`m{53AlJ6+I+TePMA=H4QGPA(Zc5j2D)G@&w zEf^mDJ^Dn>Ouz@?pvdo`ef(i=fzPdA5p$H&FI3vnPt$NY{XU0kQKaWhigZM%rZ^6Y zWNwh66x`6MD_h8mm9QUPZHj?n2sIRgFjy2rkZg)!C?>_8f^m?4hlE?=%lVu6MasWl zDf_G~k*XNOFxSaN6C<@@Ib3eT8z6oLM;1ilWbLk zuNXoN#0U%)#3&>iVm}lU;z+?b&C!RCq7|n_q~kIO;!J~r&hZs@ei662z1eLIqh06l z4jp&ux11q(DkrR5YN512RwQf|s>S+PF|yuf2-U1LuqJZ@tm&tXdIM4U8K@gSMN-Ro z2TpC&1H}kxP`?X5n>vkdf`E0tuKFw0xsu&>s$eL literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..0fe913604a55ebdf0491a02d196bcd9b3f9b59f0 GIT binary patch literal 4760 zcmb`J-*XdH6vuCVRA@l~siIQa06~dw1_S_p|5R zbN~ADpOTL;_6eFkF>hL0Haf1EMzN6AOjjD$)ETW131!W+QP4Bfke!OR%Bp;RI!p3UEkUJL|QNO<w3k-{q?)Fdoz~}vYPKG527FB3P<3V3 zE(mOg*U{(+HIqA?$;}uS0~nL(r3kOj_}SE0K{K_SrCNxEqXn$`qER@%%C6<;NXDmU zlLNA%&LowTmXy231MH+@)I6-3+ImcRI>;ux{*D-h^_aKw2pc?SS^0yKWTww)S=EeY zGwFh18nae3ZDgg3ncVE0l!(O?X->`RQr^QX!2B%0f~;%2jh(D!#1wA2kM*uiu+D?N zxyZdZ7G!NzZ)AGW^o~29_st~kI)^q#%b~46n%1@446Sp(GgGiO(=mTGeQ3>8MqbO! zW%XI)oNAd-qwuzrRSV~f`95&VBdDe`dd8X;>^yU})#i+}=|)=B?~-z!r)t^OIam$* z7L&v?MJ-Euu%ql+VQrHcOV`3%8S7ZhkuO$cB1bLUUbX`%Irja(N|#W7w*vz)QlEwz zt=Mu0uH;w1Z?kBxEpLKMeSu3WtdDj+8BKh8Hu>14l|b+$axA>T$9$(?h;DxvE!@HF z;Bjr%8nP8i;PA$>?N20OXn?dWx9#?LEP@}t7gm%b=6t<4vE)eb6qA#cP4GTlK+P~L)nT2J7If0+!Vft9aKvaHew4CgtdBO!dU_W?kA_>IC+ty{C+~o73iEivUl*#I((gj0l)i>5 z#a}nBF1{WptPpWSAI;N8;4;EIaS{}1xJ8O` zVojy?mXLc(;TWvC6ysGF8Ym_(;809Law(>u2#UQGdmsN40k^;x%U8;mDE_{q=ySG2 z%3^e5xJfJuj8uk|)M^=C1Mv+Qav%~n0dXUQdWd;Iq@ETbQYb3&x`d(vt1iU;stXMe z2Qc739E9XTJP1WV9IM#JIO^~Ll;XUEa9jjIoN18ICB76YU&5tnZ4NozDAy%CL&u%w zC1(VdRs&Y4l~CFsJppS%byy#&de+wtp`Nu4)->D#YkIYVk@%o;2h^>fBB|s&1EVhL zp{fTBsGr4vgZep0F6!r@2-G_&_BK$~C8Yih@Vbd_v)H8lxJoRACDe9&n#V)z6jX=U zFeDM3^jA-80>o&zWnzg$?FG?U+?(O|M(i-2c8O64kOvLK$c97g1xPNjqfi8~k%~Qp zbY4E2kR~Ml4b|%M`y$;xK=@H)(%A>?JrS-y^AZItsp0_Mv +// Этот код создан программой. +// Исполняемая версия: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 0000000000000000000000000000000000000000..c7a1b26fdeae1220d46e1f82dbb319a38d11cf57 GIT binary patch literal 3187 zcmb`J+fUn89LG;$hr6`0A$3~0WK(ug332QsCZUQnnyOP<${5hW!!*qa1|ob3wj;t@ zX&b}aA#@wf zpsQ#c_7iaSMfK-F1U{($BZN{@%j@QK-B9z2Yy|zE%7&TMwIm-3(=F&vMKVoUO)Kk3*H>Hlf(H!@KpfD; zTCC7*DXYz8wFP~RfouJrdC~loA)B&hNfw0Tx&hMGbYtZlz!5&Z7>UP3X(1v;r%*?W^N@hsSW(?ib7p+i6SGl#U zwpieVa9HFDlB#gInwT-jix|YB{%IeYEXO`H4>z4dZ)48;#yo}K{{dr>uR_!Jp=Uv8 zYAP3~3fcr*T9LH{DlcBMz)i23xzezLo|CnLsw_eqNtPMXjU`T%jFo(D1frCK5=v*4 zthMe$s%EL6Pth}y(xiE6ZcbDR_$ABz*m9@`p@Bo>o6TB^9Jqi`*KxJ~a2V*c2@{Ql zpBx1`{~=5~3`e07VY~!|h6%HAh(;jN|Hc_ zO}s(`7J2P}bn@XKd|_KX9D2hGcBp4oE?9Ghl*?tcr9hV#vGfG&I{ziitnM6vcV3|0 zza~SkGiZ>Y?rV}IrF6{#<8}ry^TgBZ^MpSkYzN%LGEa|C;QbPL8$ZTHylX$S?{RlH z{1e{9&+WVRBm6hs#`|~&Z`ZRrh>=)uw2XMnz&dihAlH#NU2oPXG0Io$Unr+3`_Fif zo96IuAOWax(Y^=7f8yQK*)JTBE*{t;@zdey_;TQHG>0D*T7?gk$RPd(@8Rco+rG=) zpb~Zfd(#gJiuf7ctS4~E#l-34tV_OHZ&wYwvjDBENUP`{l*l{yNBcg|7V$o}%Hi+v zrc*InemJ1`dyV+L2c(+@o)1?lyRmG1F2B`;Ux@QTzGeQw5_vNP_3;cO?BgxY;_zcA zoo&2lKdN_5V-^jI)pl%zZgZi>>+MbiJrZp-=$A_*fWL#DEINVT;l?@qE41n#PRXBD zHPx_3+-|E*jB>ZOy9#ETD2NHi6Y0g%=d5-eE|GWfw-D$}yk+0FH)z~{r%^Ar0IeMO z8!p$A&~YP1&m1=$u7F&<*@+a0u~t(sRU$Vr%$v(Fa&jD`VGHPCZbA_i@wVUIfZeGx z$Y1^&#!?Y%=tw=$-ql2j?qq35RHv&`IYTFnQzFPG#8zcqERkMNsBlnjyTG~+TSHFD zv{CTpHe&;AmrFa-lvWU2wdZ~aq)H?SCA9asz|C;@7dn&dubdKl2w|rgq4O1fUpi^} z3m0jk=&AE?YwUPenZTbiXCEA)k#0~n)Xky?N0p~}4~yC+^ra=)sFzA#4ER_Ap6Qjz UE5uHWKIffbR1}{au`KKT4_8{iTmS$7 literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..6c05a9776bd7cbae976fdcec7e3a254e93018279 GIT binary patch literal 180 zcmX?i>is@O1_p+SK%5g?SzMBus~417oL^d$oLUTL1*ImYq!#HYR*8GxXUf^%t3Noi54ZC+|=Nl{{sjzU0bQch;FcWPxwes*e}ZIZcpqG__J onW3ezNveT`r81^vrFkWpxv4PQgHubGfR2KJ07n-P+5+SQ04Y>DD*ylh literal 0 HcmV?d00001 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 0000000000000000000000000000000000000000..e987f62d1b50e97e0b4c7b81889e5e49273c9080 GIT binary patch literal 3415 zcmb_eU2oe|7=9DG>-r&Bq0$iR+6=;n)-;au)n-#Ax=us;q_iE|1wuIKX=lwJneC|U z-MU>Mw28q$LLl*}iR%I_s@68U1H=V8{ssI5q};cM_c(Eyq-|E##dhLj`#tA*-uHPQ z=kLG%Ed~JKGd#43dD|g+bez~`!O9W4dNxj!DPl!Jx}7sEP0dC^?-9#ZO=CD2jqxoK z8ZBr}!6L&3DL9s*MM7hRtfuD9lle*WIx&W`gM&&cmrBc-M3TgYGOuo5tYA2*PW;s; zh!aFm9320QjhyEDbHCr}=fi*S=+!|16%3g5zNf&%vnXWosty`|3Xa*G0Jy_Nn1E9- zg1;AV^kMY~0K*UTybUlqc5U81V_JGa<6M1)@?IGl1x-8B|8h>V1`I_fc3#Pm6SZ@8 z)(!xA-U-0@XPD6=^6T|$mot1)v2CJfwfSLxtpnv70XTXT^8klyVMQ-0s&Pd%rp#FZ z@AbSNgsWo~v5Da*4i@~3h16zE>-tuL_AG&foSjY#rP9h&BAq0ORL{5om&$9|rxcq! ziz%;&Fj0$l)U=+(yxpfEbIoz`CnU+vT_d_;M|Cx4nYKCYM02Jt&8o)qoD`46($buw zYf`=@X95I401OT-CNRSiGD*D=_B{1dyoD` zm+3lPq09AHJ&1`^WUvfz3xnv<<^JnY9Ip>+q?nW|@lT}F6#KVyO&XWz4@dz~)1rF| z5&uG0cgB9`F>99*dtzv3@Z7#U@MoKYAB^u8e7MAV>8Es!KBCL+P3bJBu!67`L&%^= zAJWBo1U~X~W@qH0kNie`Ts7_91YB8({X&1U#9pCaySEW-k*-TOB>E*?^c1rc!V?aE ztr33LW7feFFUKm%Zj?=nkKbv6KRzT!tv-XvCJa*XEk}B?`|Q@P{U!Dq{Tvg$NSEB(?gG#Ik38$;7U0Uk%XqsU3AdYc za#y=K=o84-hixlCI@KFASA_d39v^vS`jr-Wq4>~y zxixmY&nzzQ;Inr&VW0z<^>v7FXS4D)?-b#{1#@PGSoKu-9|Jj+!FPJadE=>V*600a N7)+-hY>J{7{13yY0|x*A literal 0 HcmV?d00001 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