├── README.md └── WindowsFormsxmlprojeevren ├── WindowsFormsAppsqlcrud ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── WindowsFormsAppsqlcrud.csproj └── obj │ └── Debug │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── WindowsFormsAppsqlcrud.csproj.CoreCompileInputs.cache │ └── WindowsFormsAppsqlcrud.csprojAssemblyReference.cache ├── WindowsFormsxmlprojeevren.sln └── WindowsFormsxmlprojeevren ├── About.Designer.cs ├── About.cs ├── About.resx ├── App.config ├── Form1.Designer.cs ├── Form1.cs ├── Form1.resx ├── MyXmlSerializer.cs ├── Program.cs ├── Properties ├── AssemblyInfo.cs ├── Resources.Designer.cs ├── Resources.resx ├── Settings.Designer.cs └── Settings.settings ├── TodoItem.cs ├── WindowsFormsxmlprojeevren.csproj ├── bin └── Debug │ ├── WindowsFormsxmlprojeevren.exe │ ├── WindowsFormsxmlprojeevren.exe.config │ ├── WindowsFormsxmlprojeevren.pdb │ └── data.xml ├── icons ├── 3D Nesneler - Kısayol.lnk ├── Thumbs.db ├── bubble-24-16.png ├── calendar-24-16.png ├── cross-24-16.png ├── menu-24-16.png ├── new-24-16.png ├── plus-24-16.png ├── todolist.ico └── todolist.ico adlı dosyanın kopyası.ico ├── obj └── Debug │ ├── DesignTimeResolveAssemblyReferences.cache │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ ├── TempPE │ └── Properties.Resources.Designer.cs.dll │ ├── WindowsFormsxmlprojeevren.About.resources │ ├── WindowsFormsxmlprojeevren.Form1.resources │ ├── WindowsFormsxmlprojeevren.Properties.Resources.resources │ ├── WindowsFormsxmlprojeevren.csproj.CoreCompileInputs.cache │ ├── WindowsFormsxmlprojeevren.csproj.FileListAbsolute.txt │ ├── WindowsFormsxmlprojeevren.csproj.GenerateResource.cache │ ├── WindowsFormsxmlprojeevren.csprojAssemblyReference.cache │ ├── WindowsFormsxmlprojeevren.exe │ └── WindowsFormsxmlprojeevren.pdb └── todolist.ico /README.md: -------------------------------------------------------------------------------- 1 | # c-sharp-form-xml-serialization-deserialization 2 | you can see serialization and deserialization process in c sharp forms in here 3 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace WindowsFormsAppsqlcrud 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.SuspendLayout(); 32 | // 33 | // Form1 34 | // 35 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 36 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 37 | this.ClientSize = new System.Drawing.Size(473, 310); 38 | this.Name = "Form1"; 39 | this.Text = "Form1"; 40 | this.ResumeLayout(false); 41 | 42 | } 43 | 44 | #endregion 45 | } 46 | } 47 | 48 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace WindowsFormsAppsqlcrud 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Form1.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace WindowsFormsAppsqlcrud 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("WindowsFormsAppsqlcrud")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("WindowsFormsAppsqlcrud")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("a90653f8-8b64-45e2-948a-da5025377571")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsAppsqlcrud.Properties 12 | { 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources 26 | { 27 | 28 | private static global::System.Resources.ResourceManager resourceMan; 29 | 30 | private static global::System.Globalization.CultureInfo resourceCulture; 31 | 32 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 33 | internal Resources() 34 | { 35 | } 36 | 37 | /// 38 | /// Returns the cached ResourceManager instance used by this class. 39 | /// 40 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 41 | internal static global::System.Resources.ResourceManager ResourceManager 42 | { 43 | get 44 | { 45 | if ((resourceMan == null)) 46 | { 47 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsAppsqlcrud.Properties.Resources", typeof(Resources).Assembly); 48 | resourceMan = temp; 49 | } 50 | return resourceMan; 51 | } 52 | } 53 | 54 | /// 55 | /// Overrides the current thread's CurrentUICulture property for all 56 | /// resource lookups using this strongly typed resource class. 57 | /// 58 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 59 | internal static global::System.Globalization.CultureInfo Culture 60 | { 61 | get 62 | { 63 | return resourceCulture; 64 | } 65 | set 66 | { 67 | resourceCulture = value; 68 | } 69 | } 70 | } 71 | } 72 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | text/microsoft-resx 107 | 108 | 109 | 2.0 110 | 111 | 112 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 113 | 114 | 115 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsAppsqlcrud.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/WindowsFormsAppsqlcrud.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {A90653F8-8B64-45E2-948A-DA5025377571} 8 | WinExe 9 | WindowsFormsAppsqlcrud 10 | WindowsFormsAppsqlcrud 11 | v4.5 12 | 512 13 | 14 | 15 | AnyCPU 16 | true 17 | full 18 | false 19 | bin\Debug\ 20 | DEBUG;TRACE 21 | prompt 22 | 4 23 | 24 | 25 | AnyCPU 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | Form 49 | 50 | 51 | Form1.cs 52 | 53 | 54 | 55 | 56 | Form1.cs 57 | 58 | 59 | ResXFileCodeGenerator 60 | Resources.Designer.cs 61 | Designer 62 | 63 | 64 | True 65 | Resources.resx 66 | 67 | 68 | SettingsSingleFileGenerator 69 | Settings.Designer.cs 70 | 71 | 72 | True 73 | Settings.settings 74 | True 75 | 76 | 77 | 78 | 79 | 80 | 81 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/obj/Debug/WindowsFormsAppsqlcrud.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 7b14fe8596f2f4ab2e739a228eed2afd4fb6f1ed 2 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/obj/Debug/WindowsFormsAppsqlcrud.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsAppsqlcrud/obj/Debug/WindowsFormsAppsqlcrud.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio 15 4 | VisualStudioVersion = 15.0.27703.2042 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsxmlprojeevren", "WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren.csproj", "{C6009F34-DD91-4D1D-A2D0-2438DFF390C4}" 7 | EndProject 8 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "WindowsFormsAppsqlcrud", "WindowsFormsAppsqlcrud\WindowsFormsAppsqlcrud.csproj", "{A90653F8-8B64-45E2-948A-DA5025377571}" 9 | EndProject 10 | Global 11 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 12 | Debug|Any CPU = Debug|Any CPU 13 | Release|Any CPU = Release|Any CPU 14 | EndGlobalSection 15 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 16 | {C6009F34-DD91-4D1D-A2D0-2438DFF390C4}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 17 | {C6009F34-DD91-4D1D-A2D0-2438DFF390C4}.Debug|Any CPU.Build.0 = Debug|Any CPU 18 | {C6009F34-DD91-4D1D-A2D0-2438DFF390C4}.Release|Any CPU.ActiveCfg = Release|Any CPU 19 | {C6009F34-DD91-4D1D-A2D0-2438DFF390C4}.Release|Any CPU.Build.0 = Release|Any CPU 20 | {A90653F8-8B64-45E2-948A-DA5025377571}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 21 | {A90653F8-8B64-45E2-948A-DA5025377571}.Debug|Any CPU.Build.0 = Debug|Any CPU 22 | {A90653F8-8B64-45E2-948A-DA5025377571}.Release|Any CPU.ActiveCfg = Release|Any CPU 23 | {A90653F8-8B64-45E2-948A-DA5025377571}.Release|Any CPU.Build.0 = Release|Any CPU 24 | EndGlobalSection 25 | GlobalSection(SolutionProperties) = preSolution 26 | HideSolutionNode = FALSE 27 | EndGlobalSection 28 | GlobalSection(ExtensibilityGlobals) = postSolution 29 | SolutionGuid = {85C1A955-50EC-4A5E-8ED6-CE8B8499C2FB} 30 | EndGlobalSection 31 | EndGlobal 32 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/About.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace WindowsFormsxmlprojeevren 2 | { 3 | partial class About 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.label1 = new System.Windows.Forms.Label(); 32 | this.SuspendLayout(); 33 | // 34 | // label1 35 | // 36 | this.label1.AutoSize = true; 37 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(162))); 38 | this.label1.Location = new System.Drawing.Point(25, 20); 39 | this.label1.Name = "label1"; 40 | this.label1.Size = new System.Drawing.Size(297, 144); 41 | this.label1.TabIndex = 0; 42 | this.label1.Text = "Hazırlayan : evren başer\r\niletişim : evrenbaser@hotmail.com\r\n\r\nfalan filan ....\r\n" + 43 | " \r\ntüm hakkı saklıdır. \r\n"; 44 | // 45 | // About 46 | // 47 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 48 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 49 | this.ClientSize = new System.Drawing.Size(357, 200); 50 | this.Controls.Add(this.label1); 51 | this.Name = "About"; 52 | this.Text = "About"; 53 | this.ResumeLayout(false); 54 | this.PerformLayout(); 55 | 56 | } 57 | 58 | #endregion 59 | 60 | private System.Windows.Forms.Label label1; 61 | } 62 | } -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/About.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace WindowsFormsxmlprojeevren 12 | { 13 | public partial class About : Form 14 | { 15 | public About() 16 | { 17 | InitializeComponent(); 18 | } 19 | } 20 | } 21 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/About.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 | namespace WindowsFormsxmlprojeevren 2 | { 3 | partial class Form1 4 | { 5 | /// 6 | /// Required designer variable. 7 | /// 8 | private System.ComponentModel.IContainer components = null; 9 | 10 | /// 11 | /// Clean up any resources being used. 12 | /// 13 | /// true if managed resources should be disposed; otherwise, false. 14 | protected override void Dispose(bool disposing) 15 | { 16 | if (disposing && (components != null)) 17 | { 18 | components.Dispose(); 19 | } 20 | base.Dispose(disposing); 21 | } 22 | 23 | #region Windows Form Designer generated code 24 | 25 | /// 26 | /// Required method for Designer support - do not modify 27 | /// the contents of this method with the code editor. 28 | /// 29 | private void InitializeComponent() 30 | { 31 | this.components = new System.ComponentModel.Container(); 32 | System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1)); 33 | this.menuStrip1 = new System.Windows.Forms.MenuStrip(); 34 | this.dosyaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 35 | this.çıkışToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 36 | this.todoToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 37 | this.yeniToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 38 | this.düzeltToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 39 | this.silToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 40 | this.hakkımdaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 41 | this.uygulamaHakkımdaToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 42 | this.yardımToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem(); 43 | this.BottomToolStripPanel = new System.Windows.Forms.ToolStripPanel(); 44 | this.TopToolStripPanel = new System.Windows.Forms.ToolStripPanel(); 45 | this.RightToolStripPanel = new System.Windows.Forms.ToolStripPanel(); 46 | this.LeftToolStripPanel = new System.Windows.Forms.ToolStripPanel(); 47 | this.ContentPanel = new System.Windows.Forms.ToolStripContentPanel(); 48 | this.toolStrip1 = new System.Windows.Forms.ToolStrip(); 49 | this.yeniToolStripButton = new System.Windows.Forms.ToolStripButton(); 50 | this.duzeltToolStripButton = new System.Windows.Forms.ToolStripButton(); 51 | this.silToolStripButton = new System.Windows.Forms.ToolStripButton(); 52 | this.toolStripSeparator = new System.Windows.Forms.ToolStripSeparator(); 53 | this.kesToolStripButton = new System.Windows.Forms.ToolStripButton(); 54 | this.kopyalaToolStripButton = new System.Windows.Forms.ToolStripButton(); 55 | this.yapistirToolStripButton = new System.Windows.Forms.ToolStripButton(); 56 | this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator(); 57 | this.yardimToolStripButton = new System.Windows.Forms.ToolStripButton(); 58 | this.splitContainer1 = new System.Windows.Forms.SplitContainer(); 59 | this.label1 = new System.Windows.Forms.Label(); 60 | this.clbYapilacaklarListesi = new System.Windows.Forms.CheckedListBox(); 61 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 62 | this.textBox1 = new System.Windows.Forms.TextBox(); 63 | this.groupBox2 = new System.Windows.Forms.GroupBox(); 64 | this.lstTamamlananlarListesi = new System.Windows.Forms.ListBox(); 65 | this.notifyIcon1 = new System.Windows.Forms.NotifyIcon(this.components); 66 | this.menuStrip1.SuspendLayout(); 67 | this.toolStrip1.SuspendLayout(); 68 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit(); 69 | this.splitContainer1.Panel1.SuspendLayout(); 70 | this.splitContainer1.Panel2.SuspendLayout(); 71 | this.splitContainer1.SuspendLayout(); 72 | this.groupBox1.SuspendLayout(); 73 | this.groupBox2.SuspendLayout(); 74 | this.SuspendLayout(); 75 | // 76 | // menuStrip1 77 | // 78 | this.menuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 79 | this.dosyaToolStripMenuItem, 80 | this.todoToolStripMenuItem, 81 | this.hakkımdaToolStripMenuItem}); 82 | this.menuStrip1.Location = new System.Drawing.Point(0, 0); 83 | this.menuStrip1.Name = "menuStrip1"; 84 | this.menuStrip1.Size = new System.Drawing.Size(800, 24); 85 | this.menuStrip1.TabIndex = 2; 86 | this.menuStrip1.Text = "menuStrip1"; 87 | // 88 | // dosyaToolStripMenuItem 89 | // 90 | this.dosyaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 91 | this.çıkışToolStripMenuItem}); 92 | this.dosyaToolStripMenuItem.Name = "dosyaToolStripMenuItem"; 93 | this.dosyaToolStripMenuItem.Size = new System.Drawing.Size(51, 20); 94 | this.dosyaToolStripMenuItem.Text = "Dosya"; 95 | // 96 | // çıkışToolStripMenuItem 97 | // 98 | this.çıkışToolStripMenuItem.Name = "çıkışToolStripMenuItem"; 99 | this.çıkışToolStripMenuItem.Size = new System.Drawing.Size(180, 22); 100 | this.çıkışToolStripMenuItem.Text = "çıkış"; 101 | this.çıkışToolStripMenuItem.Click += new System.EventHandler(this.çıkışToolStripMenuItem_Click); 102 | // 103 | // todoToolStripMenuItem 104 | // 105 | this.todoToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 106 | this.yeniToolStripMenuItem, 107 | this.düzeltToolStripMenuItem, 108 | this.silToolStripMenuItem}); 109 | this.todoToolStripMenuItem.Name = "todoToolStripMenuItem"; 110 | this.todoToolStripMenuItem.Size = new System.Drawing.Size(46, 20); 111 | this.todoToolStripMenuItem.Text = "Todo"; 112 | // 113 | // yeniToolStripMenuItem 114 | // 115 | this.yeniToolStripMenuItem.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.plus_24_16; 116 | this.yeniToolStripMenuItem.Name = "yeniToolStripMenuItem"; 117 | this.yeniToolStripMenuItem.Size = new System.Drawing.Size(107, 22); 118 | this.yeniToolStripMenuItem.Text = "Yeni"; 119 | // 120 | // düzeltToolStripMenuItem 121 | // 122 | this.düzeltToolStripMenuItem.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.new_24_16; 123 | this.düzeltToolStripMenuItem.Name = "düzeltToolStripMenuItem"; 124 | this.düzeltToolStripMenuItem.Size = new System.Drawing.Size(107, 22); 125 | this.düzeltToolStripMenuItem.Text = "Düzelt"; 126 | // 127 | // silToolStripMenuItem 128 | // 129 | this.silToolStripMenuItem.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.cross_24_16; 130 | this.silToolStripMenuItem.Name = "silToolStripMenuItem"; 131 | this.silToolStripMenuItem.Size = new System.Drawing.Size(107, 22); 132 | this.silToolStripMenuItem.Text = "Sil"; 133 | // 134 | // hakkımdaToolStripMenuItem 135 | // 136 | this.hakkımdaToolStripMenuItem.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] { 137 | this.uygulamaHakkımdaToolStripMenuItem, 138 | this.yardımToolStripMenuItem}); 139 | this.hakkımdaToolStripMenuItem.Name = "hakkımdaToolStripMenuItem"; 140 | this.hakkımdaToolStripMenuItem.Size = new System.Drawing.Size(73, 20); 141 | this.hakkımdaToolStripMenuItem.Text = "Hakkımda"; 142 | // 143 | // uygulamaHakkımdaToolStripMenuItem 144 | // 145 | this.uygulamaHakkımdaToolStripMenuItem.Name = "uygulamaHakkımdaToolStripMenuItem"; 146 | this.uygulamaHakkımdaToolStripMenuItem.Size = new System.Drawing.Size(185, 22); 147 | this.uygulamaHakkımdaToolStripMenuItem.Text = "Uygulama Hakkımda"; 148 | this.uygulamaHakkımdaToolStripMenuItem.Click += new System.EventHandler(this.uygulamaHakkımdaToolStripMenuItem_Click); 149 | // 150 | // yardımToolStripMenuItem 151 | // 152 | this.yardımToolStripMenuItem.Name = "yardımToolStripMenuItem"; 153 | this.yardımToolStripMenuItem.Size = new System.Drawing.Size(185, 22); 154 | this.yardımToolStripMenuItem.Text = "Yardım"; 155 | // 156 | // BottomToolStripPanel 157 | // 158 | this.BottomToolStripPanel.Location = new System.Drawing.Point(0, 0); 159 | this.BottomToolStripPanel.Name = "BottomToolStripPanel"; 160 | this.BottomToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; 161 | this.BottomToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); 162 | this.BottomToolStripPanel.Size = new System.Drawing.Size(0, 0); 163 | // 164 | // TopToolStripPanel 165 | // 166 | this.TopToolStripPanel.Location = new System.Drawing.Point(0, 0); 167 | this.TopToolStripPanel.Name = "TopToolStripPanel"; 168 | this.TopToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; 169 | this.TopToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); 170 | this.TopToolStripPanel.Size = new System.Drawing.Size(0, 0); 171 | // 172 | // RightToolStripPanel 173 | // 174 | this.RightToolStripPanel.Location = new System.Drawing.Point(0, 0); 175 | this.RightToolStripPanel.Name = "RightToolStripPanel"; 176 | this.RightToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; 177 | this.RightToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); 178 | this.RightToolStripPanel.Size = new System.Drawing.Size(0, 0); 179 | // 180 | // LeftToolStripPanel 181 | // 182 | this.LeftToolStripPanel.Location = new System.Drawing.Point(0, 0); 183 | this.LeftToolStripPanel.Name = "LeftToolStripPanel"; 184 | this.LeftToolStripPanel.Orientation = System.Windows.Forms.Orientation.Horizontal; 185 | this.LeftToolStripPanel.RowMargin = new System.Windows.Forms.Padding(3, 0, 0, 0); 186 | this.LeftToolStripPanel.Size = new System.Drawing.Size(0, 0); 187 | // 188 | // ContentPanel 189 | // 190 | this.ContentPanel.Size = new System.Drawing.Size(150, 175); 191 | // 192 | // toolStrip1 193 | // 194 | this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] { 195 | this.yeniToolStripButton, 196 | this.duzeltToolStripButton, 197 | this.silToolStripButton, 198 | this.toolStripSeparator, 199 | this.kesToolStripButton, 200 | this.kopyalaToolStripButton, 201 | this.yapistirToolStripButton, 202 | this.toolStripSeparator1, 203 | this.yardimToolStripButton}); 204 | this.toolStrip1.Location = new System.Drawing.Point(0, 24); 205 | this.toolStrip1.Name = "toolStrip1"; 206 | this.toolStrip1.Size = new System.Drawing.Size(800, 25); 207 | this.toolStrip1.TabIndex = 3; 208 | this.toolStrip1.Text = "toolStrip1"; 209 | // 210 | // yeniToolStripButton 211 | // 212 | this.yeniToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 213 | this.yeniToolStripButton.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.plus_24_16; 214 | this.yeniToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 215 | this.yeniToolStripButton.Name = "yeniToolStripButton"; 216 | this.yeniToolStripButton.Size = new System.Drawing.Size(23, 22); 217 | this.yeniToolStripButton.Text = "yeni"; 218 | this.yeniToolStripButton.Click += new System.EventHandler(this.yeniToolStripButton_Click); 219 | // 220 | // duzeltToolStripButton 221 | // 222 | this.duzeltToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 223 | this.duzeltToolStripButton.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.new_24_16; 224 | this.duzeltToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 225 | this.duzeltToolStripButton.Name = "duzeltToolStripButton"; 226 | this.duzeltToolStripButton.Size = new System.Drawing.Size(23, 22); 227 | this.duzeltToolStripButton.Text = "duzelt"; 228 | this.duzeltToolStripButton.Click += new System.EventHandler(this.duzeltToolStripButton_Click); 229 | // 230 | // silToolStripButton 231 | // 232 | this.silToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 233 | this.silToolStripButton.Image = global::WindowsFormsxmlprojeevren.Properties.Resources.cross_24_16; 234 | this.silToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 235 | this.silToolStripButton.Name = "silToolStripButton"; 236 | this.silToolStripButton.Size = new System.Drawing.Size(23, 22); 237 | this.silToolStripButton.Text = "sil"; 238 | this.silToolStripButton.Click += new System.EventHandler(this.silToolStripButton_Click); 239 | // 240 | // toolStripSeparator 241 | // 242 | this.toolStripSeparator.Name = "toolStripSeparator"; 243 | this.toolStripSeparator.Size = new System.Drawing.Size(6, 25); 244 | // 245 | // kesToolStripButton 246 | // 247 | this.kesToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 248 | this.kesToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("kesToolStripButton.Image"))); 249 | this.kesToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 250 | this.kesToolStripButton.Name = "kesToolStripButton"; 251 | this.kesToolStripButton.Size = new System.Drawing.Size(23, 22); 252 | this.kesToolStripButton.Text = "kes"; 253 | this.kesToolStripButton.Click += new System.EventHandler(this.kesToolStripButton_Click); 254 | // 255 | // kopyalaToolStripButton 256 | // 257 | this.kopyalaToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 258 | this.kopyalaToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("kopyalaToolStripButton.Image"))); 259 | this.kopyalaToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 260 | this.kopyalaToolStripButton.Name = "kopyalaToolStripButton"; 261 | this.kopyalaToolStripButton.Size = new System.Drawing.Size(23, 22); 262 | this.kopyalaToolStripButton.Text = "kopyala"; 263 | this.kopyalaToolStripButton.Click += new System.EventHandler(this.kopyalaToolStripButton_Click); 264 | // 265 | // yapistirToolStripButton 266 | // 267 | this.yapistirToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 268 | this.yapistirToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("yapistirToolStripButton.Image"))); 269 | this.yapistirToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 270 | this.yapistirToolStripButton.Name = "yapistirToolStripButton"; 271 | this.yapistirToolStripButton.Size = new System.Drawing.Size(23, 22); 272 | this.yapistirToolStripButton.Text = "yapistir"; 273 | this.yapistirToolStripButton.Click += new System.EventHandler(this.yapistirToolStripButton_Click); 274 | // 275 | // toolStripSeparator1 276 | // 277 | this.toolStripSeparator1.Name = "toolStripSeparator1"; 278 | this.toolStripSeparator1.Size = new System.Drawing.Size(6, 25); 279 | // 280 | // yardimToolStripButton 281 | // 282 | this.yardimToolStripButton.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image; 283 | this.yardimToolStripButton.Image = ((System.Drawing.Image)(resources.GetObject("yardimToolStripButton.Image"))); 284 | this.yardimToolStripButton.ImageTransparentColor = System.Drawing.Color.Magenta; 285 | this.yardimToolStripButton.Name = "yardimToolStripButton"; 286 | this.yardimToolStripButton.Size = new System.Drawing.Size(23, 22); 287 | this.yardimToolStripButton.Text = "yardim"; 288 | // 289 | // splitContainer1 290 | // 291 | this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill; 292 | this.splitContainer1.Location = new System.Drawing.Point(0, 49); 293 | this.splitContainer1.Name = "splitContainer1"; 294 | // 295 | // splitContainer1.Panel1 296 | // 297 | this.splitContainer1.Panel1.Controls.Add(this.label1); 298 | this.splitContainer1.Panel1.Controls.Add(this.clbYapilacaklarListesi); 299 | this.splitContainer1.Panel1.Controls.Add(this.groupBox1); 300 | // 301 | // splitContainer1.Panel2 302 | // 303 | this.splitContainer1.Panel2.Controls.Add(this.groupBox2); 304 | this.splitContainer1.Size = new System.Drawing.Size(800, 401); 305 | this.splitContainer1.SplitterDistance = 248; 306 | this.splitContainer1.TabIndex = 4; 307 | // 308 | // label1 309 | // 310 | this.label1.AutoSize = true; 311 | this.label1.Location = new System.Drawing.Point(29, 131); 312 | this.label1.Name = "label1"; 313 | this.label1.Size = new System.Drawing.Size(97, 13); 314 | this.label1.TabIndex = 2; 315 | this.label1.Text = "Yapılacaklar Listesi"; 316 | // 317 | // clbYapilacaklarListesi 318 | // 319 | this.clbYapilacaklarListesi.FormattingEnabled = true; 320 | this.clbYapilacaklarListesi.Location = new System.Drawing.Point(3, 155); 321 | this.clbYapilacaklarListesi.Name = "clbYapilacaklarListesi"; 322 | this.clbYapilacaklarListesi.Size = new System.Drawing.Size(242, 244); 323 | this.clbYapilacaklarListesi.TabIndex = 3; 324 | this.clbYapilacaklarListesi.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.clbYapilacaklarListesi_ItemCheck); 325 | this.clbYapilacaklarListesi.SelectedIndexChanged += new System.EventHandler(this.clbYapilacaklarListesi_SelectedIndexChanged); 326 | this.clbYapilacaklarListesi.MouseUp += new System.Windows.Forms.MouseEventHandler(this.clbYapilacaklarListesi_MouseUp); 327 | // 328 | // groupBox1 329 | // 330 | this.groupBox1.Controls.Add(this.textBox1); 331 | this.groupBox1.Location = new System.Drawing.Point(3, 3); 332 | this.groupBox1.Name = "groupBox1"; 333 | this.groupBox1.Size = new System.Drawing.Size(242, 116); 334 | this.groupBox1.TabIndex = 0; 335 | this.groupBox1.TabStop = false; 336 | this.groupBox1.Text = "groupYeniGorev"; 337 | // 338 | // textBox1 339 | // 340 | this.textBox1.Location = new System.Drawing.Point(6, 19); 341 | this.textBox1.Multiline = true; 342 | this.textBox1.Name = "textBox1"; 343 | this.textBox1.Size = new System.Drawing.Size(227, 65); 344 | this.textBox1.TabIndex = 0; 345 | // 346 | // groupBox2 347 | // 348 | this.groupBox2.Controls.Add(this.lstTamamlananlarListesi); 349 | this.groupBox2.Location = new System.Drawing.Point(3, 3); 350 | this.groupBox2.Name = "groupBox2"; 351 | this.groupBox2.Size = new System.Drawing.Size(542, 386); 352 | this.groupBox2.TabIndex = 0; 353 | this.groupBox2.TabStop = false; 354 | this.groupBox2.Text = "Tamamlananlar Listesi"; 355 | // 356 | // lstTamamlananlarListesi 357 | // 358 | this.lstTamamlananlarListesi.FormattingEnabled = true; 359 | this.lstTamamlananlarListesi.Location = new System.Drawing.Point(6, 19); 360 | this.lstTamamlananlarListesi.Name = "lstTamamlananlarListesi"; 361 | this.lstTamamlananlarListesi.Size = new System.Drawing.Size(527, 368); 362 | this.lstTamamlananlarListesi.TabIndex = 0; 363 | // 364 | // notifyIcon1 365 | // 366 | this.notifyIcon1.BalloonTipIcon = System.Windows.Forms.ToolTipIcon.Info; 367 | this.notifyIcon1.BalloonTipTitle = "Bilgilendirme"; 368 | this.notifyIcon1.Icon = ((System.Drawing.Icon)(resources.GetObject("notifyIcon1.Icon"))); 369 | this.notifyIcon1.Text = "Yapılacaklar Listesi"; 370 | this.notifyIcon1.Visible = true; 371 | // 372 | // Form1 373 | // 374 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); 375 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 376 | this.ClientSize = new System.Drawing.Size(800, 450); 377 | this.Controls.Add(this.splitContainer1); 378 | this.Controls.Add(this.toolStrip1); 379 | this.Controls.Add(this.menuStrip1); 380 | this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon"))); 381 | this.MainMenuStrip = this.menuStrip1; 382 | this.Name = "Form1"; 383 | this.Text = "Yapılacaklar Uygulaması"; 384 | this.Load += new System.EventHandler(this.Form1_Load); 385 | this.menuStrip1.ResumeLayout(false); 386 | this.menuStrip1.PerformLayout(); 387 | this.toolStrip1.ResumeLayout(false); 388 | this.toolStrip1.PerformLayout(); 389 | this.splitContainer1.Panel1.ResumeLayout(false); 390 | this.splitContainer1.Panel1.PerformLayout(); 391 | this.splitContainer1.Panel2.ResumeLayout(false); 392 | ((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit(); 393 | this.splitContainer1.ResumeLayout(false); 394 | this.groupBox1.ResumeLayout(false); 395 | this.groupBox1.PerformLayout(); 396 | this.groupBox2.ResumeLayout(false); 397 | this.ResumeLayout(false); 398 | this.PerformLayout(); 399 | 400 | } 401 | 402 | #endregion 403 | 404 | private System.Windows.Forms.MenuStrip menuStrip1; 405 | private System.Windows.Forms.ToolStripPanel BottomToolStripPanel; 406 | private System.Windows.Forms.ToolStripPanel TopToolStripPanel; 407 | private System.Windows.Forms.ToolStripPanel RightToolStripPanel; 408 | private System.Windows.Forms.ToolStripPanel LeftToolStripPanel; 409 | private System.Windows.Forms.ToolStripContentPanel ContentPanel; 410 | private System.Windows.Forms.ToolStripMenuItem dosyaToolStripMenuItem; 411 | private System.Windows.Forms.ToolStripMenuItem çıkışToolStripMenuItem; 412 | private System.Windows.Forms.ToolStripMenuItem todoToolStripMenuItem; 413 | private System.Windows.Forms.ToolStripMenuItem yeniToolStripMenuItem; 414 | private System.Windows.Forms.ToolStripMenuItem düzeltToolStripMenuItem; 415 | private System.Windows.Forms.ToolStripMenuItem silToolStripMenuItem; 416 | private System.Windows.Forms.ToolStripMenuItem hakkımdaToolStripMenuItem; 417 | private System.Windows.Forms.ToolStripMenuItem uygulamaHakkımdaToolStripMenuItem; 418 | private System.Windows.Forms.ToolStripMenuItem yardımToolStripMenuItem; 419 | private System.Windows.Forms.ToolStrip toolStrip1; 420 | private System.Windows.Forms.ToolStripButton yeniToolStripButton; 421 | private System.Windows.Forms.ToolStripButton duzeltToolStripButton; 422 | private System.Windows.Forms.ToolStripButton silToolStripButton; 423 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator; 424 | private System.Windows.Forms.ToolStripButton kesToolStripButton; 425 | private System.Windows.Forms.ToolStripButton kopyalaToolStripButton; 426 | private System.Windows.Forms.ToolStripButton yapistirToolStripButton; 427 | private System.Windows.Forms.ToolStripSeparator toolStripSeparator1; 428 | private System.Windows.Forms.ToolStripButton yardimToolStripButton; 429 | private System.Windows.Forms.SplitContainer splitContainer1; 430 | private System.Windows.Forms.CheckedListBox clbYapilacaklarListesi; 431 | private System.Windows.Forms.GroupBox groupBox1; 432 | private System.Windows.Forms.TextBox textBox1; 433 | private System.Windows.Forms.GroupBox groupBox2; 434 | private System.Windows.Forms.ListBox lstTamamlananlarListesi; 435 | private System.Windows.Forms.Label label1; 436 | private System.Windows.Forms.NotifyIcon notifyIcon1; 437 | } 438 | } 439 | 440 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Form1.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.ComponentModel; 4 | using System.Data; 5 | using System.Drawing; 6 | using System.Linq; 7 | using System.Text; 8 | using System.Threading.Tasks; 9 | using System.Windows.Forms; 10 | 11 | namespace WindowsFormsxmlprojeevren 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | private string Path = Application.StartupPath + @"\data.xml"; 20 | private MyXmlSerializer Serializer = new MyXmlSerializer(); 21 | private List Gorevlerim = new List(); 22 | 23 | private void ListeleriDoldur() 24 | { 25 | 26 | this.lstTamamlananlarListesi.Items.Clear(); 27 | this.clbYapilacaklarListesi.Items.Clear(); 28 | 29 | foreach ( TodoItem gorev in Gorevlerim) 30 | { 31 | 32 | 33 | if (gorev.Tamamlandi==false) 34 | { 35 | this.clbYapilacaklarListesi.Items.Add(gorev); 36 | } 37 | else 38 | { 39 | this.lstTamamlananlarListesi.Items.Add(gorev); 40 | } 41 | 42 | } 43 | } 44 | private void YapilacaklarListesiKaydet() 45 | { 46 | Serializer.Serialize>(Path, this.Gorevlerim); 47 | } 48 | private void YapilacaklarListesiOku() 49 | { 50 | this.Gorevlerim = Serializer.Deserialize>(Path); 51 | } 52 | 53 | private void yeniToolStripButton_Click(object sender, EventArgs e) 54 | { 55 | TodoItem yenigorev = new TodoItem() 56 | { 57 | Id = Guid.NewGuid(), 58 | GorevMetni = textBox1.Text, 59 | Tamamlandi = false 60 | }; 61 | this.Gorevlerim.Add(yenigorev); 62 | this.ListeleriDoldur(); 63 | this.YapilacaklarListesiKaydet(); 64 | // this.clbYapilacaklarListesi.Items.Add(yenigorev); 65 | this.notifyIcon1.BalloonTipText = "yeni görev oluşturuldu."; 66 | this.notifyIcon1.ShowBalloonTip(2000); 67 | } 68 | private void duzeltToolStripButton_Click(object sender, EventArgs e) 69 | { 70 | 71 | if (clbYapilacaklarListesi.SelectedIndex==-1) 72 | { 73 | MessageBox.Show("düzeltme işlemi için bir görev seç"); 74 | return; 75 | } 76 | 77 | TodoItem gorev = (TodoItem)clbYapilacaklarListesi.SelectedItem; 78 | gorev.GorevMetni = textBox1.Text; 79 | this.ListeleriDoldur(); 80 | this.YapilacaklarListesiKaydet(); 81 | } 82 | 83 | private void silToolStripButton_Click(object sender, EventArgs e)// sil 84 | { 85 | if (clbYapilacaklarListesi.SelectedIndex==-1) 86 | { 87 | MessageBox.Show("lütfen silme işlemi için bir görev seçiniz"); 88 | return; 89 | } 90 | 91 | // clbYapilacaklarListesi.Items.Remove(clbYapilacaklarListesi.SelectedItem); 92 | this.Gorevlerim.Remove((TodoItem)clbYapilacaklarListesi.SelectedItem); 93 | this.ListeleriDoldur(); 94 | this.YapilacaklarListesiKaydet(); 95 | } 96 | 97 | private void clbYapilacaklarListesi_SelectedIndexChanged(object sender, EventArgs e) 98 | { 99 | 100 | if (clbYapilacaklarListesi.SelectedIndex==-1) 101 | return; 102 | 103 | 104 | TodoItem gorev = (TodoItem)clbYapilacaklarListesi.SelectedItem; 105 | textBox1.Text = gorev.GorevMetni; 106 | 107 | } 108 | 109 | private void kesToolStripButton_Click(object sender, EventArgs e) 110 | { 111 | textBox1.Cut(); 112 | } 113 | 114 | private void kopyalaToolStripButton_Click(object sender, EventArgs e) 115 | { 116 | textBox1.Copy(); 117 | } 118 | 119 | private void yapistirToolStripButton_Click(object sender, EventArgs e) 120 | { 121 | textBox1.Paste(); 122 | } 123 | 124 | private void clbYapilacaklarListesi_ItemCheck(object sender, ItemCheckEventArgs e) 125 | { 126 | if (e.NewValue== CheckState.Checked) 127 | { 128 | TodoItem gorev = (TodoItem)clbYapilacaklarListesi.SelectedItem; 129 | gorev.Tamamlandi = true; 130 | gorev.TamamlanmaTarihi = DateTime.Now; 131 | 132 | this.YapilacaklarListesiKaydet(); 133 | } 134 | 135 | 136 | } 137 | 138 | private void Form1_Load(object sender, EventArgs e) 139 | { 140 | textBox1.Text = string.Empty; 141 | if (System.IO.File.Exists(Path)) 142 | { 143 | this.YapilacaklarListesiOku(); 144 | } 145 | this.ListeleriDoldur(); 146 | } 147 | 148 | private void clbYapilacaklarListesi_MouseUp(object sender, MouseEventArgs e) 149 | { 150 | if(clbYapilacaklarListesi.CheckedItems.Count>0) 151 | { 152 | this.ListeleriDoldur(); 153 | } 154 | } 155 | 156 | private void çıkışToolStripMenuItem_Click(object sender, EventArgs e) 157 | { 158 | Application.Exit(); 159 | } 160 | 161 | private void uygulamaHakkımdaToolStripMenuItem_Click(object sender, EventArgs e) 162 | { 163 | // hakkımda sayfasına geçsin ... 164 | About about = new About(); 165 | about.ShowDialog(); 166 | } 167 | } 168 | } 169 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/MyXmlSerializer.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | using System.Xml; 7 | namespace WindowsFormsxmlprojeevren 8 | { 9 | public class MyXmlSerializer 10 | { 11 | public void Serialize(string path,object obj) 12 | { 13 | System.Xml.Serialization.XmlSerializer serialize = new System.Xml.Serialization.XmlSerializer(obj.GetType()); 14 | 15 | XmlWriter writer = XmlWriter.Create(path); 16 | serialize.Serialize(writer, obj); 17 | writer.Close(); 18 | writer.Dispose(); 19 | 20 | } 21 | public object Deserialize (string path, Type type) 22 | { 23 | System.Xml.Serialization.XmlSerializer serialize = new System.Xml.Serialization.XmlSerializer(type); 24 | 25 | XmlReader reader = XmlReader.Create(path); 26 | object obj = serialize.Deserialize(reader); 27 | reader.Close(); 28 | reader.Dispose(); 29 | return obj; 30 | } 31 | public void Serialize(string path, T obj) 32 | { 33 | System.Xml.Serialization.XmlSerializer serialize = new System.Xml.Serialization.XmlSerializer(typeof(T)); 34 | XmlWriter writer = XmlWriter.Create(path); 35 | serialize.Serialize(writer, obj); 36 | writer.Close(); 37 | writer.Dispose(); 38 | } 39 | public T Deserialize(string path) 40 | { 41 | System.Xml.Serialization.XmlSerializer serializer = new System.Xml.Serialization.XmlSerializer(typeof(T)); 42 | XmlReader reader = XmlReader.Create(path); 43 | object obj = serializer.Deserialize(reader); 44 | reader.Close(); 45 | reader.Dispose(); 46 | return (T)obj; 47 | } 48 | } 49 | } 50 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Program.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Threading.Tasks; 5 | using System.Windows.Forms; 6 | 7 | namespace WindowsFormsxmlprojeevren 8 | { 9 | static class Program 10 | { 11 | /// 12 | /// The main entry point for the application. 13 | /// 14 | [STAThread] 15 | static void Main() 16 | { 17 | Application.EnableVisualStyles(); 18 | Application.SetCompatibleTextRenderingDefault(false); 19 | Application.Run(new Form1()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- 1 | using System.Reflection; 2 | using System.Runtime.CompilerServices; 3 | using System.Runtime.InteropServices; 4 | 5 | // General Information about an assembly is controlled through the following 6 | // set of attributes. Change these attribute values to modify the information 7 | // associated with an assembly. 8 | [assembly: AssemblyTitle("WindowsFormsxmlprojeevren")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("WindowsFormsxmlprojeevren")] 13 | [assembly: AssemblyCopyright("Copyright © 2018")] 14 | [assembly: AssemblyTrademark("")] 15 | [assembly: AssemblyCulture("")] 16 | 17 | // Setting ComVisible to false makes the types in this assembly not visible 18 | // to COM components. If you need to access a type in this assembly from 19 | // COM, set the ComVisible attribute to true on that type. 20 | [assembly: ComVisible(false)] 21 | 22 | // The following GUID is for the ID of the typelib if this project is exposed to COM 23 | [assembly: Guid("c6009f34-dd91-4d1d-a2d0-2438dff390c4")] 24 | 25 | // Version information for an assembly consists of the following four values: 26 | // 27 | // Major Version 28 | // Minor Version 29 | // Build Number 30 | // Revision 31 | // 32 | // You can specify all the values or you can default the Build and Revision Numbers 33 | // by using the '*' as shown below: 34 | // [assembly: AssemblyVersion("1.0.*")] 35 | [assembly: AssemblyVersion("1.0.0.0")] 36 | [assembly: AssemblyFileVersion("1.0.0.0")] 37 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsxmlprojeevren.Properties { 12 | using System; 13 | 14 | 15 | /// 16 | /// A strongly-typed resource class, for looking up localized strings, etc. 17 | /// 18 | // This class was auto-generated by the StronglyTypedResourceBuilder 19 | // class via a tool like ResGen or Visual Studio. 20 | // To add or remove a member, edit your .ResX file then rerun ResGen 21 | // with the /str option, or rebuild your VS project. 22 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "15.0.0.0")] 23 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 24 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 25 | internal class Resources { 26 | 27 | private static global::System.Resources.ResourceManager resourceMan; 28 | 29 | private static global::System.Globalization.CultureInfo resourceCulture; 30 | 31 | [global::System.Diagnostics.CodeAnalysis.SuppressMessageAttribute("Microsoft.Performance", "CA1811:AvoidUncalledPrivateCode")] 32 | internal Resources() { 33 | } 34 | 35 | /// 36 | /// Returns the cached ResourceManager instance used by this class. 37 | /// 38 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 39 | internal static global::System.Resources.ResourceManager ResourceManager { 40 | get { 41 | if (object.ReferenceEquals(resourceMan, null)) { 42 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("WindowsFormsxmlprojeevren.Properties.Resources", typeof(Resources).Assembly); 43 | resourceMan = temp; 44 | } 45 | return resourceMan; 46 | } 47 | } 48 | 49 | /// 50 | /// Overrides the current thread's CurrentUICulture property for all 51 | /// resource lookups using this strongly typed resource class. 52 | /// 53 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 54 | internal static global::System.Globalization.CultureInfo Culture { 55 | get { 56 | return resourceCulture; 57 | } 58 | set { 59 | resourceCulture = value; 60 | } 61 | } 62 | 63 | /// 64 | /// Looks up a localized resource of type System.Drawing.Bitmap. 65 | /// 66 | internal static System.Drawing.Bitmap bubble_24_16 { 67 | get { 68 | object obj = ResourceManager.GetObject("bubble-24-16", resourceCulture); 69 | return ((System.Drawing.Bitmap)(obj)); 70 | } 71 | } 72 | 73 | /// 74 | /// Looks up a localized resource of type System.Drawing.Bitmap. 75 | /// 76 | internal static System.Drawing.Bitmap calendar_24_16 { 77 | get { 78 | object obj = ResourceManager.GetObject("calendar-24-16", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | 83 | /// 84 | /// Looks up a localized resource of type System.Drawing.Bitmap. 85 | /// 86 | internal static System.Drawing.Bitmap cross_24_16 { 87 | get { 88 | object obj = ResourceManager.GetObject("cross-24-16", resourceCulture); 89 | return ((System.Drawing.Bitmap)(obj)); 90 | } 91 | } 92 | 93 | /// 94 | /// Looks up a localized resource of type System.Drawing.Bitmap. 95 | /// 96 | internal static System.Drawing.Bitmap menu_24_16 { 97 | get { 98 | object obj = ResourceManager.GetObject("menu-24-16", resourceCulture); 99 | return ((System.Drawing.Bitmap)(obj)); 100 | } 101 | } 102 | 103 | /// 104 | /// Looks up a localized resource of type System.Drawing.Bitmap. 105 | /// 106 | internal static System.Drawing.Bitmap new_24_16 { 107 | get { 108 | object obj = ResourceManager.GetObject("new-24-16", resourceCulture); 109 | return ((System.Drawing.Bitmap)(obj)); 110 | } 111 | } 112 | 113 | /// 114 | /// Looks up a localized resource of type System.Drawing.Bitmap. 115 | /// 116 | internal static System.Drawing.Bitmap plus_24_16 { 117 | get { 118 | object obj = ResourceManager.GetObject("plus-24-16", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | } 123 | } 124 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Properties/Resources.resx: -------------------------------------------------------------------------------- 1 |  2 | 3 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | text/microsoft-resx 110 | 111 | 112 | 2.0 113 | 114 | 115 | System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 116 | 117 | 118 | System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 119 | 120 | 121 | 122 | ..\icons\bubble-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\icons\calendar-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\icons\cross-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\icons\menu-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\icons\new-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\icons\plus-24-16.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- 1 | //------------------------------------------------------------------------------ 2 | // 3 | // This code was generated by a tool. 4 | // Runtime Version:4.0.30319.42000 5 | // 6 | // Changes to this file may cause incorrect behavior and will be lost if 7 | // the code is regenerated. 8 | // 9 | //------------------------------------------------------------------------------ 10 | 11 | namespace WindowsFormsxmlprojeevren.Properties 12 | { 13 | 14 | 15 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 16 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 17 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 18 | { 19 | 20 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 21 | 22 | public static Settings Default 23 | { 24 | get 25 | { 26 | return defaultInstance; 27 | } 28 | } 29 | } 30 | } 31 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/TodoItem.cs: -------------------------------------------------------------------------------- 1 | using System; 2 | using System.Collections.Generic; 3 | using System.Linq; 4 | using System.Text; 5 | using System.Threading.Tasks; 6 | 7 | namespace WindowsFormsxmlprojeevren 8 | { 9 | public class TodoItem 10 | { // Guid benzersiz bir kod üreterek Id değişkenine 11 | // o kodu tanımlar 12 | // her veri satırı için otomatik olarak benzersiz bir id tanımlamış oluruz. 13 | public Guid Id { get; set; } 14 | public string GorevMetni { get; set; } 15 | public DateTime TamamlanmaTarihi { get; set; } 16 | public bool Tamamlandi { get; set; } 17 | 18 | public override string ToString() 19 | { 20 | if (!Tamamlandi) { return GorevMetni; } 21 | else { return string.Format(TamamlanmaTarihi.ToShortDateString() + " " + GorevMetni); } 22 | 23 | 24 | } 25 | 26 | } 27 | } 28 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {C6009F34-DD91-4D1D-A2D0-2438DFF390C4} 8 | WinExe 9 | WindowsFormsxmlprojeevren 10 | WindowsFormsxmlprojeevren 11 | v4.5 12 | 512 13 | 14 | 15 | AnyCPU 16 | true 17 | full 18 | false 19 | bin\Debug\ 20 | DEBUG;TRACE 21 | prompt 22 | 4 23 | 24 | 25 | AnyCPU 26 | pdbonly 27 | true 28 | bin\Release\ 29 | TRACE 30 | prompt 31 | 4 32 | 33 | 34 | todolist.ico 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | Form 52 | 53 | 54 | About.cs 55 | 56 | 57 | Form 58 | 59 | 60 | Form1.cs 61 | 62 | 63 | 64 | 65 | 66 | 67 | About.cs 68 | 69 | 70 | Form1.cs 71 | 72 | 73 | ResXFileCodeGenerator 74 | Resources.Designer.cs 75 | Designer 76 | 77 | 78 | True 79 | Resources.resx 80 | True 81 | 82 | 83 | SettingsSingleFileGenerator 84 | Settings.Designer.cs 85 | 86 | 87 | True 88 | Settings.settings 89 | True 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/WindowsFormsxmlprojeevren.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/WindowsFormsxmlprojeevren.exe -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/WindowsFormsxmlprojeevren.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/WindowsFormsxmlprojeevren.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/WindowsFormsxmlprojeevren.pdb -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/bin/Debug/data.xml: -------------------------------------------------------------------------------- 1 | cb92b9c7-3166-4b41-bc63-e03b3cf3d615yeni görev sadas d2018-07-20T12:22:36.5717273+03:00trued460650e-86a8-49c0-9966-a0ebb152a00cyeni görev sadas dasdasdasd2018-07-20T11:42:08.3609349+03:00true05bcd8dd-9d80-4151-9d50-1478c2ee131ayeni görev sadas dasdasdasd2018-07-20T11:42:12.0559185+03:00true97a6ccb6-a9fb-4d5d-9a6a-81353b2ab679yeni görev sadas dasdasdasd2018-07-20T11:42:19.9682282+03:00trueb8907308-46b3-499f-a559-9836a5c9827byeni görev sadas dasdasdasd2018-07-20T11:42:35.9123724+03:00true7c03bbc6-5a19-4a6c-9b61-eeb10148a468yeni görev sadas dasdasdasd2018-07-20T11:42:44.9294658+03:00trueea1150c4-75cf-4bad-b841-f813c0362f42jkljkljlkjlkjk2018-07-20T11:45:10.2902233+03:00truee559d060-1f49-4693-bc96-ef77515f492ajkljkljlkjlkjk2018-07-20T11:45:13.1457385+03:00true60e12a09-3e80-49be-9299-51b95cee7f01jkljkljlkjlkjk52018-07-20T11:45:18.687814+03:00true5182b08e-b8fc-48d6-8b18-ca9a388c6379asd2018-07-20T12:22:35.7405917+03:00true7bb3f517-374c-4fc1-8a23-3bf991e46b70asd22018-07-20T12:22:33.9051972+03:00truea3a709d4-3e0f-4830-9669-501146187a4easd2asd2018-07-20T11:56:06.6495014+03:00true7343663b-2121-4cf3-8187-94d39c4203eaasd2asd2018-07-20T12:07:58.7131534+03:00true7e7e0eb7-fdf0-48d0-b44c-cb4ee8dc518basd2asd2018-07-20T12:08:33.8982332+03:00true98d9e3ef-1d2e-4559-9181-7e733b5cda05lşi2018-07-20T12:22:32.8413658+03:00true5d53c091-c3a6-4265-865b-77403145a3c4lşi22018-07-20T12:11:21.6031438+03:00truea1a5c8db-73d7-413f-9140-d75c3d8a01c5lşi22018-07-20T12:11:25.3078267+03:00truec2197c46-e118-4e7c-a8b6-5aab2aeabc70lşi22018-07-20T12:11:27.905082+03:00true1990167b-240f-4665-8a1e-7c5eda513767lşi22018-07-20T12:11:36.6971786+03:00truee2fdeca4-d9f9-44c1-9e60-161b6eb0466easd2018-07-20T12:22:31.624818+03:00trueabc41b2d-f7f4-4aff-b4b4-62d562a880e7asd12018-07-20T12:14:52.6813338+03:00trueaea54835-6edc-4fa0-a9aa-dcf881d7a6a6asd12018-07-20T12:14:56.1848664+03:00true85e3423e-399c-40c2-bc55-c520b57cb62fasd12018-07-20T12:14:59.1784901+03:00true7e1ce214-baf4-42ac-b8ea-7d546672f184asd12018-07-20T12:15:02.05645+03:00truebb091296-b6d7-4d3d-a7b4-18173d250bf7asd12018-07-20T12:15:07.133028+03:00true4e0f6e97-9d5c-48e6-a66d-e42790c9c967asd12018-07-20T12:15:11.4482041+03:00truefa690958-5753-4289-9d2b-4c0f28518728asd12018-07-20T12:15:17.7525276+03:00trued44fe414-7719-4f56-ba7f-8a4e86f75c79EYENİ GÖREB2018-07-20T12:22:29.1851373+03:00truee1ea76fa-c17e-41af-a881-c4ec1c8d9422yeni görev sadas dLLLLL2018-07-20T12:22:49.2170716+03:00true -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/3D Nesneler - Kısayol.lnk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/3D Nesneler - Kısayol.lnk -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/Thumbs.db: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/Thumbs.db -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/bubble-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/bubble-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/calendar-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/calendar-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/cross-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/cross-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/menu-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/menu-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/new-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/new-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/plus-24-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/plus-24-16.png -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/todolist.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/todolist.ico -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/todolist.ico adlı dosyanın kopyası.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/icons/todolist.ico adlı dosyanın kopyası.ico -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.About.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.About.resources -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.Form1.resources -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.Properties.Resources.resources -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 4734fa106e6bb3949f6b00577b4d1cee7c580650 2 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\bin\Debug\WindowsFormsxmlprojeevren.exe.config 2 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\bin\Debug\WindowsFormsxmlprojeevren.exe 3 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\bin\Debug\WindowsFormsxmlprojeevren.pdb 4 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.csprojAssemblyReference.cache 5 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.Form1.resources 6 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.Properties.Resources.resources 7 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.csproj.GenerateResource.cache 8 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.csproj.CoreCompileInputs.cache 9 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.exe 10 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.pdb 11 | c:\users\user\source\repos\WindowsFormsxmlprojeevren\WindowsFormsxmlprojeevren\obj\Debug\WindowsFormsxmlprojeevren.About.resources 12 | -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.exe -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/obj/Debug/WindowsFormsxmlprojeevren.pdb -------------------------------------------------------------------------------- /WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/todolist.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/evrenbaser/c-sharp-form-xml-serialization-deserialization/3f6f6d010d22e915a536d1104f938a53f3baac28/WindowsFormsxmlprojeevren/WindowsFormsxmlprojeevren/todolist.ico --------------------------------------------------------------------------------