commit 34940fcc22d0fcfcab34466ccaf8924d87d1399b Author: Eugen Höglinger Date: Thu Nov 26 16:26:55 2020 +0100 Initialize diff --git a/.vs/Test_CustomMessageBox/v16/.suo b/.vs/Test_CustomMessageBox/v16/.suo new file mode 100644 index 0000000..75365f0 Binary files /dev/null and b/.vs/Test_CustomMessageBox/v16/.suo differ diff --git a/Daten/Icons/Construction.png b/Daten/Icons/Construction.png new file mode 100644 index 0000000..0914ebc Binary files /dev/null and b/Daten/Icons/Construction.png differ diff --git a/Daten/Icons/Email.png b/Daten/Icons/Email.png new file mode 100644 index 0000000..6224ae0 Binary files /dev/null and b/Daten/Icons/Email.png differ diff --git a/Daten/Icons/Error.png b/Daten/Icons/Error.png new file mode 100644 index 0000000..500eb96 Binary files /dev/null and b/Daten/Icons/Error.png differ diff --git a/Daten/Icons/Information.png b/Daten/Icons/Information.png new file mode 100644 index 0000000..6c532b2 Binary files /dev/null and b/Daten/Icons/Information.png differ diff --git a/Daten/Icons/Instruction.png b/Daten/Icons/Instruction.png new file mode 100644 index 0000000..844188f Binary files /dev/null and b/Daten/Icons/Instruction.png differ diff --git a/Daten/Icons/Question.png b/Daten/Icons/Question.png new file mode 100644 index 0000000..edfb8bd Binary files /dev/null and b/Daten/Icons/Question.png differ diff --git a/Daten/Icons/Telephone.png b/Daten/Icons/Telephone.png new file mode 100644 index 0000000..31327bb Binary files /dev/null and b/Daten/Icons/Telephone.png differ diff --git a/Daten/Icons/Tips.png b/Daten/Icons/Tips.png new file mode 100644 index 0000000..a42695d Binary files /dev/null and b/Daten/Icons/Tips.png differ diff --git a/Daten/Icons/Warning.png b/Daten/Icons/Warning.png new file mode 100644 index 0000000..dd4990d Binary files /dev/null and b/Daten/Icons/Warning.png differ diff --git a/Test_CustomMessageBox.sln b/Test_CustomMessageBox.sln new file mode 100644 index 0000000..da2dd10 --- /dev/null +++ b/Test_CustomMessageBox.sln @@ -0,0 +1,25 @@ + +Microsoft Visual Studio Solution File, Format Version 12.00 +# Visual Studio Version 16 +VisualStudioVersion = 16.0.30406.217 +MinimumVisualStudioVersion = 10.0.40219.1 +Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Test_CustomMessageBox", "Test_CustomMessageBox\Test_CustomMessageBox.csproj", "{746AFB5B-6948-45FA-A2A7-7AB2F065FCD7}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {746AFB5B-6948-45FA-A2A7-7AB2F065FCD7}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {746AFB5B-6948-45FA-A2A7-7AB2F065FCD7}.Debug|Any CPU.Build.0 = Debug|Any CPU + {746AFB5B-6948-45FA-A2A7-7AB2F065FCD7}.Release|Any CPU.ActiveCfg = Release|Any CPU + {746AFB5B-6948-45FA-A2A7-7AB2F065FCD7}.Release|Any CPU.Build.0 = Release|Any CPU + EndGlobalSection + GlobalSection(SolutionProperties) = preSolution + HideSolutionNode = FALSE + EndGlobalSection + GlobalSection(ExtensibilityGlobals) = postSolution + SolutionGuid = {568F14FA-1AC4-4E03-859C-BA251A6079CC} + EndGlobalSection +EndGlobal diff --git a/Test_CustomMessageBox/App.config b/Test_CustomMessageBox/App.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_CustomMessageBox/App.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_CustomMessageBox/Form1.Designer.cs b/Test_CustomMessageBox/Form1.Designer.cs new file mode 100644 index 0000000..df21bb9 --- /dev/null +++ b/Test_CustomMessageBox/Form1.Designer.cs @@ -0,0 +1,61 @@ +namespace Test_CustomMessageBox +{ + partial class Form1 + { + /// + /// Erforderliche Designervariable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Verwendete Ressourcen bereinigen. + /// + /// True, wenn verwaltete Ressourcen gelöscht werden sollen; andernfalls False. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Vom Windows Form-Designer generierter Code + + /// + /// Erforderliche Methode für die Designerunterstützung. + /// Der Inhalt der Methode darf nicht mit dem Code-Editor geändert werden. + /// + private void InitializeComponent() + { + this.buttonOpenMessageBox = new System.Windows.Forms.Button(); + this.SuspendLayout(); + // + // buttonOpenMessageBox + // + this.buttonOpenMessageBox.Location = new System.Drawing.Point(79, 105); + this.buttonOpenMessageBox.Name = "buttonOpenMessageBox"; + this.buttonOpenMessageBox.Size = new System.Drawing.Size(184, 23); + this.buttonOpenMessageBox.TabIndex = 0; + this.buttonOpenMessageBox.Text = "Open Message Box"; + this.buttonOpenMessageBox.UseVisualStyleBackColor = true; + this.buttonOpenMessageBox.Click += new System.EventHandler(this.buttonOpenMessageBox_Click); + // + // Form1 + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(343, 233); + this.Controls.Add(this.buttonOpenMessageBox); + this.Name = "Form1"; + this.Text = "Form1"; + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.Button buttonOpenMessageBox; + } +} + diff --git a/Test_CustomMessageBox/Form1.cs b/Test_CustomMessageBox/Form1.cs new file mode 100644 index 0000000..a855cca --- /dev/null +++ b/Test_CustomMessageBox/Form1.cs @@ -0,0 +1,31 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.IO; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_CustomMessageBox +{ + public partial class Form1 : Form + { + public Form1() + { + InitializeComponent(); + } + + // Bild öffnen + FileStream imageStream = new FileStream(@"H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Daten\Icons\Information.png", FileMode.Open, FileAccess.Read); + + + private void buttonOpenMessageBox_Click(object sender, EventArgs e) + { + MessageBox.Show("Mitteilungstext", "Titel", MessageBoxButtons.OK, Image.FromStream(imageStream), new MessageBox()); + MessageBox.Show("Mitteilungstext", "Richtige Antwort", MessageBoxButtons.YesNo, Image.FromStream(imageStream), new MessageBox()); + } + } +} diff --git a/Test_CustomMessageBox/Form1.resx b/Test_CustomMessageBox/Form1.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Test_CustomMessageBox/Form1.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Test_CustomMessageBox/MessageBox.Designer.cs b/Test_CustomMessageBox/MessageBox.Designer.cs new file mode 100644 index 0000000..e167fc7 --- /dev/null +++ b/Test_CustomMessageBox/MessageBox.Designer.cs @@ -0,0 +1,101 @@ +namespace Test_CustomMessageBox +{ + partial class MessageBox + { + /// + /// Required designer variable. + /// + private System.ComponentModel.IContainer components = null; + + /// + /// Clean up any resources being used. + /// + /// true if managed resources should be disposed; otherwise, false. + protected override void Dispose(bool disposing) + { + if (disposing && (components != null)) + { + components.Dispose(); + } + base.Dispose(disposing); + } + + #region Windows Form Designer generated code + + /// + /// Required method for Designer support - do not modify + /// the contents of this method with the code editor. + /// + private void InitializeComponent() + { + this.lbImage = new System.Windows.Forms.PictureBox(); + this.lbText = new System.Windows.Forms.Label(); + this.btYes = new System.Windows.Forms.Button(); + this.btNo = new System.Windows.Forms.Button(); + ((System.ComponentModel.ISupportInitialize)(this.lbImage)).BeginInit(); + this.SuspendLayout(); + // + // lbImage + // + this.lbImage.Location = new System.Drawing.Point(13, 13); + this.lbImage.Name = "lbImage"; + this.lbImage.Size = new System.Drawing.Size(32, 32); + this.lbImage.TabIndex = 0; + this.lbImage.TabStop = false; + // + // lbText + // + this.lbText.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) + | System.Windows.Forms.AnchorStyles.Left) + | System.Windows.Forms.AnchorStyles.Right))); + this.lbText.Location = new System.Drawing.Point(84, 13); + this.lbText.Name = "lbText"; + this.lbText.Size = new System.Drawing.Size(532, 356); + this.lbText.TabIndex = 1; + this.lbText.Text = "label1"; + // + // btYes + // + this.btYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left))); + this.btYes.Location = new System.Drawing.Point(13, 372); + this.btYes.Name = "btYes"; + this.btYes.Size = new System.Drawing.Size(75, 23); + this.btYes.TabIndex = 2; + this.btYes.Text = "Yes"; + this.btYes.UseVisualStyleBackColor = true; + // + // btNo + // + this.btNo.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); + this.btNo.Location = new System.Drawing.Point(541, 372); + this.btNo.Name = "btNo"; + this.btNo.Size = new System.Drawing.Size(75, 23); + this.btNo.TabIndex = 3; + this.btNo.Text = "No"; + this.btNo.UseVisualStyleBackColor = true; + // + // MessageForm + // + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; + this.ClientSize = new System.Drawing.Size(628, 407); + this.Controls.Add(this.btNo); + this.Controls.Add(this.btYes); + this.Controls.Add(this.lbText); + this.Controls.Add(this.lbImage); + this.Name = "MessageForm"; + this.Text = "MessageBox"; + this.Load += new System.EventHandler(this.MessageForm_Load); + ((System.ComponentModel.ISupportInitialize)(this.lbImage)).EndInit(); + this.ResumeLayout(false); + + } + + #endregion + + private System.Windows.Forms.PictureBox lbImage; + private System.Windows.Forms.Label lbText; + private System.Windows.Forms.Button btYes; + private System.Windows.Forms.Button btNo; + } +} \ No newline at end of file diff --git a/Test_CustomMessageBox/MessageBox.cs b/Test_CustomMessageBox/MessageBox.cs new file mode 100644 index 0000000..c8309ac --- /dev/null +++ b/Test_CustomMessageBox/MessageBox.cs @@ -0,0 +1,70 @@ +using System; +using System.Collections.Generic; +using System.ComponentModel; +using System.Data; +using System.Drawing; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_CustomMessageBox +{ + public partial class MessageBox : Form + { + private static string text, title; + private static MessageBoxButtons buttons; + private static System.Drawing.Image img; + private static DialogResult result; + private static Form form; + + public MessageBox() + { + InitializeComponent(); + } + + private void MessageForm_Load(object sender, EventArgs e) + { + MessageBox.GetMessage(lbText, this, lbImage, btYes, btNo); + } + + public static DialogResult Show(string mText, string mTitle, MessageBoxButtons mButtons, System.Drawing.Image mImg, Form mForm) + { + text = mText; + title = mTitle; + buttons = mButtons; + img = mImg; + form = mForm; + form.ShowDialog(); + return result; + } + + public static void GetMessage(Control mTextControl, Control mTitleControl, Control mImgControl, Control btYes, Control btNo) + { + mTextControl.Text = text; + mTitleControl.Text = title; + if (buttons != MessageBoxButtons.YesNo) + { + btYes.Visible = false; + btNo.Text = "OK"; + } + btYes.Click += new EventHandler(Yes); + btNo.Click += new EventHandler(No); + mImgControl.BackgroundImageLayout = ImageLayout.Center; + mImgControl.BackgroundImage = img; + result = DialogResult.Abort; + } + + private static void Yes(object sender, EventArgs e) + { + result = DialogResult.Yes; + form.Close(); + } + + private static void No(object sender, EventArgs e) + { + result = DialogResult.No; + form.Close(); + } + } +} diff --git a/Test_CustomMessageBox/MessageBox.resx b/Test_CustomMessageBox/MessageBox.resx new file mode 100644 index 0000000..1af7de1 --- /dev/null +++ b/Test_CustomMessageBox/MessageBox.resx @@ -0,0 +1,120 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + text/microsoft-resx + + + 2.0 + + + System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + + System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 + + \ No newline at end of file diff --git a/Test_CustomMessageBox/Program.cs b/Test_CustomMessageBox/Program.cs new file mode 100644 index 0000000..73d8541 --- /dev/null +++ b/Test_CustomMessageBox/Program.cs @@ -0,0 +1,22 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Threading.Tasks; +using System.Windows.Forms; + +namespace Test_CustomMessageBox +{ + static class Program + { + /// + /// Der Haupteinstiegspunkt für die Anwendung. + /// + [STAThread] + static void Main() + { + Application.EnableVisualStyles(); + Application.SetCompatibleTextRenderingDefault(false); + Application.Run(new Form1()); + } + } +} diff --git a/Test_CustomMessageBox/Properties/AssemblyInfo.cs b/Test_CustomMessageBox/Properties/AssemblyInfo.cs new file mode 100644 index 0000000..0f559b2 --- /dev/null +++ b/Test_CustomMessageBox/Properties/AssemblyInfo.cs @@ -0,0 +1,36 @@ +using System.Reflection; +using System.Runtime.CompilerServices; +using System.Runtime.InteropServices; + +// Allgemeine Informationen über eine Assembly werden über die folgenden +// Attribute gesteuert. Ändern Sie diese Attributwerte, um die Informationen zu ändern, +// die einer Assembly zugeordnet sind. +[assembly: AssemblyTitle("Test_CustomMessageBox")] +[assembly: AssemblyDescription("")] +[assembly: AssemblyConfiguration("")] +[assembly: AssemblyCompany("")] +[assembly: AssemblyProduct("Test_CustomMessageBox")] +[assembly: AssemblyCopyright("Copyright © 2020")] +[assembly: AssemblyTrademark("")] +[assembly: AssemblyCulture("")] + +// Durch Festlegen von ComVisible auf FALSE werden die Typen in dieser Assembly +// für COM-Komponenten unsichtbar. Wenn Sie auf einen Typ in dieser Assembly von +// COM aus zugreifen müssen, sollten Sie das ComVisible-Attribut für diesen Typ auf "True" festlegen. +[assembly: ComVisible(false)] + +// Die folgende GUID bestimmt die ID der Typbibliothek, wenn dieses Projekt für COM verfügbar gemacht wird +[assembly: Guid("746afb5b-6948-45fa-a2a7-7ab2f065fcd7")] + +// Versionsinformationen für eine Assembly bestehen aus den folgenden vier Werten: +// +// Hauptversion +// Nebenversion +// Buildnummer +// Revision +// +// Sie können alle Werte angeben oder Standardwerte für die Build- und Revisionsnummern verwenden, +// indem Sie "*" wie unten gezeigt eingeben: +// [assembly: AssemblyVersion("1.0.*")] +[assembly: AssemblyVersion("1.0.0.0")] +[assembly: AssemblyFileVersion("1.0.0.0")] diff --git a/Test_CustomMessageBox/Properties/Resources.Designer.cs b/Test_CustomMessageBox/Properties/Resources.Designer.cs new file mode 100644 index 0000000..f9f4adb --- /dev/null +++ b/Test_CustomMessageBox/Properties/Resources.Designer.cs @@ -0,0 +1,71 @@ +//------------------------------------------------------------------------------ +// +// Dieser Code wurde von einem Tool generiert. +// Laufzeitversion: 4.0.30319.42000 +// +// Änderungen an dieser Datei können fehlerhaftes Verhalten verursachen und gehen verloren, wenn +// der Code neu generiert wird. +// +//------------------------------------------------------------------------------ + +namespace Test_CustomMessageBox.Properties +{ + + + /// + /// Eine stark typisierte Ressourcenklasse zum Suchen von lokalisierten Zeichenfolgen usw. + /// + // Diese Klasse wurde von der StronglyTypedResourceBuilder-Klasse + // über ein Tool wie ResGen oder Visual Studio automatisch generiert. + // Um einen Member hinzuzufügen oder zu entfernen, bearbeiten Sie die .ResX-Datei und führen dann ResGen + // mit der Option /str erneut aus, oder erstellen Sie Ihr VS-Projekt neu. + [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() + { + } + + /// + /// Gibt die zwischengespeicherte ResourceManager-Instanz zurück, die von dieser Klasse verwendet wird. + /// + [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("Test_CustomMessageBox.Properties.Resources", typeof(Resources).Assembly); + resourceMan = temp; + } + return resourceMan; + } + } + + /// + /// Überschreibt die CurrentUICulture-Eigenschaft des aktuellen Threads für alle + /// Ressourcenlookups, die diese stark typisierte Ressourcenklasse verwenden. + /// + [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/Test_CustomMessageBox/Properties/Resources.resx b/Test_CustomMessageBox/Properties/Resources.resx new file mode 100644 index 0000000..af7dbeb --- /dev/null +++ b/Test_CustomMessageBox/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/Test_CustomMessageBox/Properties/Settings.Designer.cs b/Test_CustomMessageBox/Properties/Settings.Designer.cs new file mode 100644 index 0000000..8905f2b --- /dev/null +++ b/Test_CustomMessageBox/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 Test_CustomMessageBox.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/Test_CustomMessageBox/Properties/Settings.settings b/Test_CustomMessageBox/Properties/Settings.settings new file mode 100644 index 0000000..3964565 --- /dev/null +++ b/Test_CustomMessageBox/Properties/Settings.settings @@ -0,0 +1,7 @@ + + + + + + + diff --git a/Test_CustomMessageBox/Test_CustomMessageBox.csproj b/Test_CustomMessageBox/Test_CustomMessageBox.csproj new file mode 100644 index 0000000..b7783b0 --- /dev/null +++ b/Test_CustomMessageBox/Test_CustomMessageBox.csproj @@ -0,0 +1,92 @@ + + + + + Debug + AnyCPU + {746AFB5B-6948-45FA-A2A7-7AB2F065FCD7} + WinExe + Test_CustomMessageBox + Test_CustomMessageBox + v4.7.2 + 512 + true + true + + + AnyCPU + true + full + false + bin\Debug\ + DEBUG;TRACE + prompt + 4 + + + AnyCPU + pdbonly + true + bin\Release\ + TRACE + prompt + 4 + + + + + + + + + + + + + + + + + Form + + + Form1.cs + + + Form + + + MessageBox.cs + + + + + Form1.cs + + + MessageBox.cs + + + ResXFileCodeGenerator + Resources.Designer.cs + Designer + + + True + Resources.resx + + + SettingsSingleFileGenerator + Settings.Designer.cs + + + True + Settings.settings + True + + + + + + + \ No newline at end of file diff --git a/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe new file mode 100644 index 0000000..7d6a01f Binary files /dev/null and b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe differ diff --git a/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe.config b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe.config new file mode 100644 index 0000000..56efbc7 --- /dev/null +++ b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.exe.config @@ -0,0 +1,6 @@ + + + + + + \ No newline at end of file diff --git a/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.pdb b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.pdb new file mode 100644 index 0000000..503e351 Binary files /dev/null and b/Test_CustomMessageBox/bin/Debug/Test_CustomMessageBox.pdb differ diff --git a/Test_CustomMessageBox/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs b/Test_CustomMessageBox/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs new file mode 100644 index 0000000..3871b18 --- /dev/null +++ b/Test_CustomMessageBox/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs @@ -0,0 +1,4 @@ +// +using System; +using System.Reflection; +[assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] diff --git a/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferences.cache b/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferences.cache new file mode 100644 index 0000000..3f43d9d Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferences.cache differ diff --git a/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache b/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache new file mode 100644 index 0000000..69b1009 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Form1.resources b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Form1.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Form1.resources differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.MessageBox.resources b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.MessageBox.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.MessageBox.resources differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Properties.Resources.resources b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Properties.Resources.resources new file mode 100644 index 0000000..6c05a97 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.Properties.Resources.resources differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.CoreCompileInputs.cache b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.CoreCompileInputs.cache new file mode 100644 index 0000000..db7bb2f --- /dev/null +++ b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.CoreCompileInputs.cache @@ -0,0 +1 @@ +df848e0a6c69791f7f2fc807a242cc1202a83c91 diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.FileListAbsolute.txt b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.FileListAbsolute.txt new file mode 100644 index 0000000..2f65758 --- /dev/null +++ b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.FileListAbsolute.txt @@ -0,0 +1,11 @@ +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.csprojAssemblyReference.cache +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.Form1.resources +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.Properties.Resources.resources +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.csproj.GenerateResource.cache +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.csproj.CoreCompileInputs.cache +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.MessageBox.resources +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\bin\Debug\Test_CustomMessageBox.exe.config +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\bin\Debug\Test_CustomMessageBox.exe +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\bin\Debug\Test_CustomMessageBox.pdb +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.exe +H:\Programmieren\Git-Repository\VisualStudio\2017\_TEST\Test_CustomMessageBox\Test_CustomMessageBox\obj\Debug\Test_CustomMessageBox.pdb diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.GenerateResource.cache b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.GenerateResource.cache new file mode 100644 index 0000000..66f98ef Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csproj.GenerateResource.cache differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csprojAssemblyReference.cache b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csprojAssemblyReference.cache new file mode 100644 index 0000000..f81aff4 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.csprojAssemblyReference.cache differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.exe b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.exe new file mode 100644 index 0000000..7d6a01f Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.exe differ diff --git a/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.pdb b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.pdb new file mode 100644 index 0000000..503e351 Binary files /dev/null and b/Test_CustomMessageBox/obj/Debug/Test_CustomMessageBox.pdb differ