├── C3 ├── W4 │ └── Tour │ │ ├── .vs │ │ └── Tour │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── Tour.csproj │ │ ├── Tour.sln │ │ ├── bin │ │ └── Debug │ │ │ ├── Tour.exe │ │ │ ├── Tour.exe.config │ │ │ └── Tour.pdb │ │ ├── images │ │ ├── img1.jpg │ │ ├── img2.jpg │ │ ├── img3.jpg │ │ ├── img4.jpg │ │ ├── img5.jpg │ │ ├── img6.jpg │ │ ├── img7.jpg │ │ └── img8.jpg │ │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── Tour.Form1.resources │ │ ├── Tour.Properties.Resources.resources │ │ ├── Tour.csproj.CoreCompileInputs.cache │ │ ├── Tour.csproj.FileListAbsolute.txt │ │ ├── Tour.csproj.GenerateResource.cache │ │ ├── Tour.csprojAssemblyReference.cache │ │ ├── Tour.exe │ │ └── Tour.pdb ├── W5 │ └── PersonalInfo │ │ ├── .vs │ │ └── PersonalInfo │ │ │ └── v16 │ │ │ └── .suo │ │ ├── App.config │ │ ├── Form1.Designer.cs │ │ ├── Form1.cs │ │ ├── Form1.resx │ │ ├── PersonalInfo.csproj │ │ ├── PersonalInfo.sln │ │ ├── Program.cs │ │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ │ ├── bin │ │ └── Debug │ │ │ ├── PersonalInfo.exe │ │ │ ├── PersonalInfo.exe.config │ │ │ └── PersonalInfo.pdb │ │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── PersonalInfo.Form1.resources │ │ ├── PersonalInfo.Properties.Resources.resources │ │ ├── PersonalInfo.csproj.CoreCompileInputs.cache │ │ ├── PersonalInfo.csproj.FileListAbsolute.txt │ │ ├── PersonalInfo.csproj.GenerateResource.cache │ │ ├── PersonalInfo.csprojAssemblyReference.cache │ │ ├── PersonalInfo.exe │ │ └── PersonalInfo.pdb └── W6 │ └── WindowsFormsApp1 │ ├── .vs │ └── login │ │ └── v16 │ │ └── .suo │ ├── WindowsFormsApp1 │ ├── App.config │ ├── Form1.Designer.cs │ ├── Form1.cs │ ├── Form1.resx │ ├── Form2.Designer.cs │ ├── Form2.cs │ ├── Form2.resx │ ├── Program.cs │ ├── Properties │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ ├── Resources.resx │ │ ├── Settings.Designer.cs │ │ └── Settings.settings │ ├── Resources │ │ ├── Wallpaper (52).jpg │ │ └── my logo.png │ ├── bin │ │ └── Debug │ │ │ ├── WindowsFormsApp1.exe │ │ │ ├── WindowsFormsApp1.exe.config │ │ │ └── WindowsFormsApp1.pdb │ ├── login.csproj │ └── obj │ │ └── Debug │ │ ├── .NETFramework,Version=v4.7.2.AssemblyAttributes.cs │ │ ├── DesignTimeResolveAssemblyReferences.cache │ │ ├── DesignTimeResolveAssemblyReferencesInput.cache │ │ ├── TempPE │ │ └── Properties.Resources.Designer.cs.dll │ │ ├── WindowsFormsApp1.Form1.resources │ │ ├── WindowsFormsApp1.LoginForm.resources │ │ ├── WindowsFormsApp1.MainForm.resources │ │ ├── WindowsFormsApp1.Properties.Resources.resources │ │ ├── WindowsFormsApp1.csproj.CoreCompileInputs.cache │ │ ├── WindowsFormsApp1.csproj.FileListAbsolute.txt │ │ ├── WindowsFormsApp1.csproj.GenerateResource.cache │ │ ├── WindowsFormsApp1.csprojAssemblyReference.cache │ │ ├── WindowsFormsApp1.exe │ │ ├── WindowsFormsApp1.pdb │ │ ├── login.csproj.CoreCompileInputs.cache │ │ ├── login.csproj.FileListAbsolute.txt │ │ ├── login.csproj.GenerateResource.cache │ │ └── login.csprojAssemblyReference.cache │ └── login.sln └── README.md /C3/W4/Tour/.vs/Tour/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/.vs/Tour/v16/.suo -------------------------------------------------------------------------------- /C3/W4/Tour/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W4/Tour/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace Tour 3 | { 4 | partial class Form1 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.label7 = new System.Windows.Forms.Label(); 33 | this.label6 = new System.Windows.Forms.Label(); 34 | this.label9 = new System.Windows.Forms.Label(); 35 | this.label8 = new System.Windows.Forms.Label(); 36 | this.label4 = new System.Windows.Forms.Label(); 37 | this.label5 = new System.Windows.Forms.Label(); 38 | this.label3 = new System.Windows.Forms.Label(); 39 | this.label2 = new System.Windows.Forms.Label(); 40 | this.label1 = new System.Windows.Forms.Label(); 41 | this.groupBox1 = new System.Windows.Forms.GroupBox(); 42 | this.checkBox9 = new System.Windows.Forms.CheckBox(); 43 | this.checkBox5 = new System.Windows.Forms.CheckBox(); 44 | this.checkBox6 = new System.Windows.Forms.CheckBox(); 45 | this.checkBox7 = new System.Windows.Forms.CheckBox(); 46 | this.checkBox8 = new System.Windows.Forms.CheckBox(); 47 | this.checkBox3 = new System.Windows.Forms.CheckBox(); 48 | this.checkBox4 = new System.Windows.Forms.CheckBox(); 49 | this.checkBox2 = new System.Windows.Forms.CheckBox(); 50 | this.checkBox1 = new System.Windows.Forms.CheckBox(); 51 | this.label10 = new System.Windows.Forms.Label(); 52 | this.panel1 = new System.Windows.Forms.Panel(); 53 | this.radioButton15 = new System.Windows.Forms.RadioButton(); 54 | this.radioButton14 = new System.Windows.Forms.RadioButton(); 55 | this.radioButton13 = new System.Windows.Forms.RadioButton(); 56 | this.radioButton12 = new System.Windows.Forms.RadioButton(); 57 | this.radioButton11 = new System.Windows.Forms.RadioButton(); 58 | this.radioButton10 = new System.Windows.Forms.RadioButton(); 59 | this.radioButton7 = new System.Windows.Forms.RadioButton(); 60 | this.button3 = new System.Windows.Forms.Button(); 61 | this.button2 = new System.Windows.Forms.Button(); 62 | this.button1 = new System.Windows.Forms.Button(); 63 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 64 | this.groupBox2 = new System.Windows.Forms.GroupBox(); 65 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 66 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 67 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 68 | this.radioButton4 = new System.Windows.Forms.RadioButton(); 69 | this.radioButton5 = new System.Windows.Forms.RadioButton(); 70 | this.radioButton6 = new System.Windows.Forms.RadioButton(); 71 | this.radioButton8 = new System.Windows.Forms.RadioButton(); 72 | this.radioButton9 = new System.Windows.Forms.RadioButton(); 73 | this.groupBox1.SuspendLayout(); 74 | this.panel1.SuspendLayout(); 75 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 76 | this.groupBox2.SuspendLayout(); 77 | this.SuspendLayout(); 78 | // 79 | // label7 80 | // 81 | this.label7.Location = new System.Drawing.Point(382, 77); 82 | this.label7.Name = "label7"; 83 | this.label7.Size = new System.Drawing.Size(154, 130); 84 | this.label7.TabIndex = 21; 85 | this.label7.Text = "شماره ۷"; 86 | this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 87 | // 88 | // label6 89 | // 90 | this.label6.Location = new System.Drawing.Point(228, 337); 91 | this.label6.Name = "label6"; 92 | this.label6.Size = new System.Drawing.Size(154, 130); 93 | this.label6.TabIndex = 16; 94 | this.label6.Text = "شماره ۶"; 95 | this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 96 | // 97 | // label9 98 | // 99 | this.label9.Location = new System.Drawing.Point(382, 337); 100 | this.label9.Name = "label9"; 101 | this.label9.Size = new System.Drawing.Size(154, 130); 102 | this.label9.TabIndex = 19; 103 | this.label9.Text = "شماره ۹ "; 104 | this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 105 | // 106 | // label8 107 | // 108 | this.label8.Location = new System.Drawing.Point(382, 207); 109 | this.label8.Name = "label8"; 110 | this.label8.Size = new System.Drawing.Size(154, 130); 111 | this.label8.TabIndex = 20; 112 | this.label8.Text = "شماره ۸"; 113 | this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 114 | // 115 | // label4 116 | // 117 | this.label4.Location = new System.Drawing.Point(228, 77); 118 | this.label4.Name = "label4"; 119 | this.label4.Size = new System.Drawing.Size(154, 130); 120 | this.label4.TabIndex = 18; 121 | this.label4.Text = "شماره ۴"; 122 | this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 123 | // 124 | // label5 125 | // 126 | this.label5.Location = new System.Drawing.Point(228, 207); 127 | this.label5.Name = "label5"; 128 | this.label5.Size = new System.Drawing.Size(154, 130); 129 | this.label5.TabIndex = 17; 130 | this.label5.Text = "شماره ۵"; 131 | this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 132 | // 133 | // label3 134 | // 135 | this.label3.Location = new System.Drawing.Point(74, 337); 136 | this.label3.Name = "label3"; 137 | this.label3.Size = new System.Drawing.Size(154, 130); 138 | this.label3.TabIndex = 15; 139 | this.label3.Text = "شماره ۳"; 140 | this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 141 | // 142 | // label2 143 | // 144 | this.label2.Location = new System.Drawing.Point(74, 207); 145 | this.label2.Name = "label2"; 146 | this.label2.Size = new System.Drawing.Size(154, 130); 147 | this.label2.TabIndex = 14; 148 | this.label2.Text = "شماره ۲"; 149 | this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 150 | // 151 | // label1 152 | // 153 | this.label1.Location = new System.Drawing.Point(74, 77); 154 | this.label1.Name = "label1"; 155 | this.label1.Size = new System.Drawing.Size(154, 130); 156 | this.label1.TabIndex = 13; 157 | this.label1.Text = "شماره ۱"; 158 | this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 159 | // 160 | // groupBox1 161 | // 162 | this.groupBox1.Controls.Add(this.checkBox9); 163 | this.groupBox1.Controls.Add(this.checkBox5); 164 | this.groupBox1.Controls.Add(this.checkBox6); 165 | this.groupBox1.Controls.Add(this.checkBox7); 166 | this.groupBox1.Controls.Add(this.checkBox8); 167 | this.groupBox1.Controls.Add(this.checkBox3); 168 | this.groupBox1.Controls.Add(this.checkBox4); 169 | this.groupBox1.Controls.Add(this.checkBox2); 170 | this.groupBox1.Controls.Add(this.checkBox1); 171 | this.groupBox1.Location = new System.Drawing.Point(903, 77); 172 | this.groupBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 173 | this.groupBox1.Name = "groupBox1"; 174 | this.groupBox1.Padding = new System.Windows.Forms.Padding(3, 4, 3, 4); 175 | this.groupBox1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 176 | this.groupBox1.Size = new System.Drawing.Size(224, 414); 177 | this.groupBox1.TabIndex = 22; 178 | this.groupBox1.TabStop = false; 179 | this.groupBox1.Text = "نمایش قسمتی از تصویر"; 180 | // 181 | // checkBox9 182 | // 183 | this.checkBox9.AutoSize = true; 184 | this.checkBox9.Location = new System.Drawing.Point(128, 321); 185 | this.checkBox9.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 186 | this.checkBox9.Name = "checkBox9"; 187 | this.checkBox9.Size = new System.Drawing.Size(69, 21); 188 | this.checkBox9.TabIndex = 8; 189 | this.checkBox9.Text = "شماره ۹"; 190 | this.checkBox9.UseVisualStyleBackColor = true; 191 | this.checkBox9.CheckedChanged += new System.EventHandler(this.checkBox9_CheckedChanged_1); 192 | // 193 | // checkBox5 194 | // 195 | this.checkBox5.AutoSize = true; 196 | this.checkBox5.Location = new System.Drawing.Point(128, 178); 197 | this.checkBox5.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 198 | this.checkBox5.Name = "checkBox5"; 199 | this.checkBox5.Size = new System.Drawing.Size(69, 21); 200 | this.checkBox5.TabIndex = 7; 201 | this.checkBox5.Text = "شماره ۵"; 202 | this.checkBox5.UseVisualStyleBackColor = true; 203 | this.checkBox5.CheckedChanged += new System.EventHandler(this.checkBox5_CheckedChanged_1); 204 | // 205 | // checkBox6 206 | // 207 | this.checkBox6.AutoSize = true; 208 | this.checkBox6.Location = new System.Drawing.Point(128, 213); 209 | this.checkBox6.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 210 | this.checkBox6.Name = "checkBox6"; 211 | this.checkBox6.Size = new System.Drawing.Size(69, 21); 212 | this.checkBox6.TabIndex = 6; 213 | this.checkBox6.Text = "شماره ۶"; 214 | this.checkBox6.UseVisualStyleBackColor = true; 215 | this.checkBox6.CheckedChanged += new System.EventHandler(this.checkBox6_CheckedChanged_1); 216 | // 217 | // checkBox7 218 | // 219 | this.checkBox7.AutoSize = true; 220 | this.checkBox7.Location = new System.Drawing.Point(128, 247); 221 | this.checkBox7.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 222 | this.checkBox7.Name = "checkBox7"; 223 | this.checkBox7.Size = new System.Drawing.Size(69, 21); 224 | this.checkBox7.TabIndex = 5; 225 | this.checkBox7.Text = "شماره ۷"; 226 | this.checkBox7.UseVisualStyleBackColor = true; 227 | this.checkBox7.CheckedChanged += new System.EventHandler(this.checkBox7_CheckedChanged_1); 228 | // 229 | // checkBox8 230 | // 231 | this.checkBox8.AutoSize = true; 232 | this.checkBox8.Location = new System.Drawing.Point(128, 282); 233 | this.checkBox8.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 234 | this.checkBox8.Name = "checkBox8"; 235 | this.checkBox8.Size = new System.Drawing.Size(69, 21); 236 | this.checkBox8.TabIndex = 4; 237 | this.checkBox8.Text = "شماره ۸"; 238 | this.checkBox8.UseVisualStyleBackColor = true; 239 | this.checkBox8.CheckedChanged += new System.EventHandler(this.checkBox8_CheckedChanged_1); 240 | // 241 | // checkBox3 242 | // 243 | this.checkBox3.AutoSize = true; 244 | this.checkBox3.Location = new System.Drawing.Point(128, 114); 245 | this.checkBox3.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 246 | this.checkBox3.Name = "checkBox3"; 247 | this.checkBox3.Size = new System.Drawing.Size(69, 21); 248 | this.checkBox3.TabIndex = 3; 249 | this.checkBox3.Text = "شماره ۳"; 250 | this.checkBox3.UseVisualStyleBackColor = true; 251 | this.checkBox3.CheckedChanged += new System.EventHandler(this.checkBox3_CheckedChanged_1); 252 | // 253 | // checkBox4 254 | // 255 | this.checkBox4.AutoSize = true; 256 | this.checkBox4.Location = new System.Drawing.Point(128, 146); 257 | this.checkBox4.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 258 | this.checkBox4.Name = "checkBox4"; 259 | this.checkBox4.Size = new System.Drawing.Size(69, 21); 260 | this.checkBox4.TabIndex = 2; 261 | this.checkBox4.Text = "شماره ۴"; 262 | this.checkBox4.UseVisualStyleBackColor = true; 263 | this.checkBox4.CheckedChanged += new System.EventHandler(this.checkBox4_CheckedChanged_1); 264 | // 265 | // checkBox2 266 | // 267 | this.checkBox2.AutoSize = true; 268 | this.checkBox2.Location = new System.Drawing.Point(128, 82); 269 | this.checkBox2.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 270 | this.checkBox2.Name = "checkBox2"; 271 | this.checkBox2.Size = new System.Drawing.Size(69, 21); 272 | this.checkBox2.TabIndex = 1; 273 | this.checkBox2.Text = "شماره ۲"; 274 | this.checkBox2.UseVisualStyleBackColor = true; 275 | this.checkBox2.CheckedChanged += new System.EventHandler(this.checkBox2_CheckedChanged_1); 276 | // 277 | // checkBox1 278 | // 279 | this.checkBox1.AutoSize = true; 280 | this.checkBox1.Location = new System.Drawing.Point(128, 49); 281 | this.checkBox1.Margin = new System.Windows.Forms.Padding(0, 12, 0, 0); 282 | this.checkBox1.Name = "checkBox1"; 283 | this.checkBox1.Size = new System.Drawing.Size(69, 21); 284 | this.checkBox1.TabIndex = 0; 285 | this.checkBox1.Text = "شماره ۱"; 286 | this.checkBox1.UseVisualStyleBackColor = true; 287 | this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); 288 | // 289 | // label10 290 | // 291 | this.label10.Location = new System.Drawing.Point(885, 496); 292 | this.label10.Name = "label10"; 293 | this.label10.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 294 | this.label10.Size = new System.Drawing.Size(215, 29); 295 | this.label10.TabIndex = 24; 296 | this.label10.Text = "این مکان تاریخی در کدام شهر یا استان قرار دارد؟"; 297 | // 298 | // panel1 299 | // 300 | this.panel1.Controls.Add(this.radioButton15); 301 | this.panel1.Controls.Add(this.radioButton14); 302 | this.panel1.Controls.Add(this.radioButton13); 303 | this.panel1.Controls.Add(this.radioButton12); 304 | this.panel1.Controls.Add(this.radioButton11); 305 | this.panel1.Controls.Add(this.radioButton10); 306 | this.panel1.Controls.Add(this.radioButton7); 307 | this.panel1.Location = new System.Drawing.Point(553, 529); 308 | this.panel1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 309 | this.panel1.Name = "panel1"; 310 | this.panel1.Size = new System.Drawing.Size(574, 39); 311 | this.panel1.TabIndex = 23; 312 | // 313 | // radioButton15 314 | // 315 | this.radioButton15.AutoSize = true; 316 | this.radioButton15.Location = new System.Drawing.Point(4, 4); 317 | this.radioButton15.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 318 | this.radioButton15.Name = "radioButton15"; 319 | this.radioButton15.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 320 | this.radioButton15.Size = new System.Drawing.Size(57, 21); 321 | this.radioButton15.TabIndex = 6; 322 | this.radioButton15.TabStop = true; 323 | this.radioButton15.Text = "کرمان"; 324 | this.radioButton15.UseVisualStyleBackColor = true; 325 | // 326 | // radioButton14 327 | // 328 | this.radioButton14.AutoSize = true; 329 | this.radioButton14.Location = new System.Drawing.Point(73, 4); 330 | this.radioButton14.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 331 | this.radioButton14.Name = "radioButton14"; 332 | this.radioButton14.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 333 | this.radioButton14.Size = new System.Drawing.Size(55, 21); 334 | this.radioButton14.TabIndex = 5; 335 | this.radioButton14.TabStop = true; 336 | this.radioButton14.Text = "همدان"; 337 | this.radioButton14.UseVisualStyleBackColor = true; 338 | // 339 | // radioButton13 340 | // 341 | this.radioButton13.AutoSize = true; 342 | this.radioButton13.Location = new System.Drawing.Point(143, 4); 343 | this.radioButton13.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 344 | this.radioButton13.Name = "radioButton13"; 345 | this.radioButton13.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 346 | this.radioButton13.Size = new System.Drawing.Size(57, 21); 347 | this.radioButton13.TabIndex = 4; 348 | this.radioButton13.TabStop = true; 349 | this.radioButton13.Text = "زنجان"; 350 | this.radioButton13.UseVisualStyleBackColor = true; 351 | // 352 | // radioButton12 353 | // 354 | this.radioButton12.AutoSize = true; 355 | this.radioButton12.Location = new System.Drawing.Point(215, 4); 356 | this.radioButton12.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 357 | this.radioButton12.Name = "radioButton12"; 358 | this.radioButton12.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 359 | this.radioButton12.Size = new System.Drawing.Size(63, 21); 360 | this.radioButton12.TabIndex = 3; 361 | this.radioButton12.TabStop = true; 362 | this.radioButton12.Text = "اصفهان"; 363 | this.radioButton12.UseVisualStyleBackColor = true; 364 | // 365 | // radioButton11 366 | // 367 | this.radioButton11.AutoSize = true; 368 | this.radioButton11.Location = new System.Drawing.Point(296, 4); 369 | this.radioButton11.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 370 | this.radioButton11.Name = "radioButton11"; 371 | this.radioButton11.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 372 | this.radioButton11.Size = new System.Drawing.Size(57, 21); 373 | this.radioButton11.TabIndex = 2; 374 | this.radioButton11.TabStop = true; 375 | this.radioButton11.Text = "شیراز"; 376 | this.radioButton11.UseVisualStyleBackColor = true; 377 | // 378 | // radioButton10 379 | // 380 | this.radioButton10.AutoSize = true; 381 | this.radioButton10.Location = new System.Drawing.Point(370, 4); 382 | this.radioButton10.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 383 | this.radioButton10.Name = "radioButton10"; 384 | this.radioButton10.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 385 | this.radioButton10.Size = new System.Drawing.Size(103, 21); 386 | this.radioButton10.TabIndex = 1; 387 | this.radioButton10.TabStop = true; 388 | this.radioButton10.Text = "خراسان رضوی"; 389 | this.radioButton10.UseVisualStyleBackColor = true; 390 | // 391 | // radioButton7 392 | // 393 | this.radioButton7.AutoSize = true; 394 | this.radioButton7.Location = new System.Drawing.Point(489, 4); 395 | this.radioButton7.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 396 | this.radioButton7.Name = "radioButton7"; 397 | this.radioButton7.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 398 | this.radioButton7.Size = new System.Drawing.Size(52, 21); 399 | this.radioButton7.TabIndex = 0; 400 | this.radioButton7.TabStop = true; 401 | this.radioButton7.Text = "تبریز"; 402 | this.radioButton7.UseVisualStyleBackColor = true; 403 | // 404 | // button3 405 | // 406 | this.button3.BackColor = System.Drawing.Color.Brown; 407 | this.button3.Location = new System.Drawing.Point(771, 588); 408 | this.button3.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 409 | this.button3.Name = "button3"; 410 | this.button3.Size = new System.Drawing.Size(98, 45); 411 | this.button3.TabIndex = 27; 412 | this.button3.Text = "خروج"; 413 | this.button3.UseVisualStyleBackColor = false; 414 | // 415 | // button2 416 | // 417 | this.button2.BackColor = System.Drawing.Color.Honeydew; 418 | this.button2.Location = new System.Drawing.Point(888, 588); 419 | this.button2.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 420 | this.button2.Name = "button2"; 421 | this.button2.Size = new System.Drawing.Size(98, 45); 422 | this.button2.TabIndex = 26; 423 | this.button2.Text = "تغییر تصویر"; 424 | this.button2.UseVisualStyleBackColor = false; 425 | this.button2.Click += new System.EventHandler(this.button2_Click); 426 | // 427 | // button1 428 | // 429 | this.button1.BackColor = System.Drawing.Color.SeaGreen; 430 | this.button1.Location = new System.Drawing.Point(1002, 588); 431 | this.button1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4); 432 | this.button1.Name = "button1"; 433 | this.button1.Size = new System.Drawing.Size(98, 45); 434 | this.button1.TabIndex = 25; 435 | this.button1.Text = "پاسخ صحیح"; 436 | this.button1.UseVisualStyleBackColor = false; 437 | this.button1.Click += new System.EventHandler(this.button1_Click); 438 | // 439 | // pictureBox1 440 | // 441 | this.pictureBox1.Image = global::Tour.Properties.Resources.img7; 442 | this.pictureBox1.Location = new System.Drawing.Point(77, 77); 443 | this.pictureBox1.Name = "pictureBox1"; 444 | this.pictureBox1.Size = new System.Drawing.Size(459, 390); 445 | this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.StretchImage; 446 | this.pictureBox1.TabIndex = 28; 447 | this.pictureBox1.TabStop = false; 448 | // 449 | // groupBox2 450 | // 451 | this.groupBox2.Controls.Add(this.radioButton9); 452 | this.groupBox2.Controls.Add(this.radioButton8); 453 | this.groupBox2.Controls.Add(this.radioButton6); 454 | this.groupBox2.Controls.Add(this.radioButton5); 455 | this.groupBox2.Controls.Add(this.radioButton4); 456 | this.groupBox2.Controls.Add(this.radioButton3); 457 | this.groupBox2.Controls.Add(this.radioButton2); 458 | this.groupBox2.Controls.Add(this.radioButton1); 459 | this.groupBox2.Location = new System.Drawing.Point(612, 80); 460 | this.groupBox2.Name = "groupBox2"; 461 | this.groupBox2.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 462 | this.groupBox2.Size = new System.Drawing.Size(219, 411); 463 | this.groupBox2.TabIndex = 29; 464 | this.groupBox2.TabStop = false; 465 | this.groupBox2.Text = "نام مکان"; 466 | // 467 | // radioButton1 468 | // 469 | this.radioButton1.AutoSize = true; 470 | this.radioButton1.Location = new System.Drawing.Point(135, 46); 471 | this.radioButton1.Name = "radioButton1"; 472 | this.radioButton1.Size = new System.Drawing.Size(59, 21); 473 | this.radioButton1.TabIndex = 0; 474 | this.radioButton1.TabStop = true; 475 | this.radioButton1.Text = "ارگ بم"; 476 | this.radioButton1.UseVisualStyleBackColor = true; 477 | // 478 | // radioButton2 479 | // 480 | this.radioButton2.AutoSize = true; 481 | this.radioButton2.Location = new System.Drawing.Point(105, 78); 482 | this.radioButton2.Name = "radioButton2"; 483 | this.radioButton2.Size = new System.Drawing.Size(77, 21); 484 | this.radioButton2.TabIndex = 1; 485 | this.radioButton2.TabStop = true; 486 | this.radioButton2.Text = "چهل ستون"; 487 | this.radioButton2.UseVisualStyleBackColor = true; 488 | // 489 | // radioButton3 490 | // 491 | this.radioButton3.AutoSize = true; 492 | this.radioButton3.Location = new System.Drawing.Point(99, 111); 493 | this.radioButton3.Name = "radioButton3"; 494 | this.radioButton3.Size = new System.Drawing.Size(86, 21); 495 | this.radioButton3.TabIndex = 2; 496 | this.radioButton3.TabStop = true; 497 | this.radioButton3.Text = "دروازه قران"; 498 | this.radioButton3.UseVisualStyleBackColor = true; 499 | // 500 | // radioButton4 501 | // 502 | this.radioButton4.AutoSize = true; 503 | this.radioButton4.Location = new System.Drawing.Point(101, 143); 504 | this.radioButton4.Name = "radioButton4"; 505 | this.radioButton4.Size = new System.Drawing.Size(89, 21); 506 | this.radioButton4.TabIndex = 3; 507 | this.radioButton4.TabStop = true; 508 | this.radioButton4.Text = "غار علیصدر"; 509 | this.radioButton4.UseVisualStyleBackColor = true; 510 | // 511 | // radioButton5 512 | // 513 | this.radioButton5.AutoSize = true; 514 | this.radioButton5.Location = new System.Drawing.Point(129, 174); 515 | this.radioButton5.Name = "radioButton5"; 516 | this.radioButton5.Size = new System.Drawing.Size(62, 21); 517 | this.radioButton5.TabIndex = 4; 518 | this.radioButton5.TabStop = true; 519 | this.radioButton5.Text = "باغ ارم"; 520 | this.radioButton5.UseVisualStyleBackColor = true; 521 | // 522 | // radioButton6 523 | // 524 | this.radioButton6.AutoSize = true; 525 | this.radioButton6.Location = new System.Drawing.Point(92, 210); 526 | this.radioButton6.Name = "radioButton6"; 527 | this.radioButton6.Size = new System.Drawing.Size(83, 21); 528 | this.radioButton6.TabIndex = 5; 529 | this.radioButton6.TabStop = true; 530 | this.radioButton6.Text = "گنبد سلطانیه"; 531 | this.radioButton6.UseVisualStyleBackColor = true; 532 | // 533 | // radioButton8 534 | // 535 | this.radioButton8.AutoSize = true; 536 | this.radioButton8.Location = new System.Drawing.Point(130, 243); 537 | this.radioButton8.Name = "radioButton8"; 538 | this.radioButton8.Size = new System.Drawing.Size(55, 21); 539 | this.radioButton8.TabIndex = 6; 540 | this.radioButton8.TabStop = true; 541 | this.radioButton8.Text = "ایلگلی"; 542 | this.radioButton8.UseVisualStyleBackColor = true; 543 | // 544 | // radioButton9 545 | // 546 | this.radioButton9.AutoSize = true; 547 | this.radioButton9.Location = new System.Drawing.Point(77, 279); 548 | this.radioButton9.Name = "radioButton9"; 549 | this.radioButton9.Size = new System.Drawing.Size(94, 21); 550 | this.radioButton9.TabIndex = 7; 551 | this.radioButton9.TabStop = true; 552 | this.radioButton9.Text = "مقبره فردوسی"; 553 | this.radioButton9.UseVisualStyleBackColor = true; 554 | // 555 | // Form1 556 | // 557 | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); 558 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 559 | this.BackColor = System.Drawing.Color.Honeydew; 560 | this.ClientSize = new System.Drawing.Size(1177, 664); 561 | this.Controls.Add(this.groupBox2); 562 | this.Controls.Add(this.button3); 563 | this.Controls.Add(this.button2); 564 | this.Controls.Add(this.button1); 565 | this.Controls.Add(this.label10); 566 | this.Controls.Add(this.panel1); 567 | this.Controls.Add(this.groupBox1); 568 | this.Controls.Add(this.label7); 569 | this.Controls.Add(this.label6); 570 | this.Controls.Add(this.label9); 571 | this.Controls.Add(this.label8); 572 | this.Controls.Add(this.label4); 573 | this.Controls.Add(this.label5); 574 | this.Controls.Add(this.label3); 575 | this.Controls.Add(this.label2); 576 | this.Controls.Add(this.label1); 577 | this.Controls.Add(this.pictureBox1); 578 | this.Name = "Form1"; 579 | this.Text = "Form1"; 580 | this.groupBox1.ResumeLayout(false); 581 | this.groupBox1.PerformLayout(); 582 | this.panel1.ResumeLayout(false); 583 | this.panel1.PerformLayout(); 584 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 585 | this.groupBox2.ResumeLayout(false); 586 | this.groupBox2.PerformLayout(); 587 | this.ResumeLayout(false); 588 | 589 | } 590 | 591 | #endregion 592 | private System.Windows.Forms.Label label7; 593 | private System.Windows.Forms.Label label6; 594 | private System.Windows.Forms.Label label9; 595 | private System.Windows.Forms.Label label8; 596 | private System.Windows.Forms.Label label4; 597 | private System.Windows.Forms.Label label5; 598 | private System.Windows.Forms.Label label3; 599 | private System.Windows.Forms.Label label2; 600 | private System.Windows.Forms.Label label1; 601 | private System.Windows.Forms.GroupBox groupBox1; 602 | private System.Windows.Forms.CheckBox checkBox9; 603 | private System.Windows.Forms.CheckBox checkBox5; 604 | private System.Windows.Forms.CheckBox checkBox6; 605 | private System.Windows.Forms.CheckBox checkBox7; 606 | private System.Windows.Forms.CheckBox checkBox8; 607 | private System.Windows.Forms.CheckBox checkBox3; 608 | private System.Windows.Forms.CheckBox checkBox4; 609 | private System.Windows.Forms.CheckBox checkBox2; 610 | private System.Windows.Forms.CheckBox checkBox1; 611 | private System.Windows.Forms.Label label10; 612 | private System.Windows.Forms.Panel panel1; 613 | private System.Windows.Forms.RadioButton radioButton15; 614 | private System.Windows.Forms.RadioButton radioButton14; 615 | private System.Windows.Forms.RadioButton radioButton13; 616 | private System.Windows.Forms.RadioButton radioButton12; 617 | private System.Windows.Forms.RadioButton radioButton11; 618 | private System.Windows.Forms.RadioButton radioButton10; 619 | private System.Windows.Forms.RadioButton radioButton7; 620 | private System.Windows.Forms.Button button3; 621 | private System.Windows.Forms.Button button2; 622 | private System.Windows.Forms.Button button1; 623 | private System.Windows.Forms.PictureBox pictureBox1; 624 | private System.Windows.Forms.GroupBox groupBox2; 625 | private System.Windows.Forms.RadioButton radioButton1; 626 | private System.Windows.Forms.RadioButton radioButton2; 627 | private System.Windows.Forms.RadioButton radioButton9; 628 | private System.Windows.Forms.RadioButton radioButton8; 629 | private System.Windows.Forms.RadioButton radioButton6; 630 | private System.Windows.Forms.RadioButton radioButton5; 631 | private System.Windows.Forms.RadioButton radioButton4; 632 | private System.Windows.Forms.RadioButton radioButton3; 633 | } 634 | } 635 | 636 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 Tour 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void checkBox1_CheckedChanged(object sender, EventArgs e) 21 | { 22 | label1.Visible = false; 23 | } 24 | private void checkBox2_CheckedChanged_1(object sender, EventArgs e) 25 | { 26 | label2.Visible = false; 27 | } 28 | 29 | private void checkBox3_CheckedChanged_1(object sender, EventArgs e) 30 | { 31 | label3.Visible = false; 32 | } 33 | 34 | private void checkBox4_CheckedChanged_1(object sender, EventArgs e) 35 | { 36 | label4.Visible = false; 37 | } 38 | 39 | private void checkBox5_CheckedChanged_1(object sender, EventArgs e) 40 | { 41 | label5.Visible = false; 42 | } 43 | 44 | private void checkBox6_CheckedChanged_1(object sender, EventArgs e) 45 | { 46 | label6.Visible = false; 47 | } 48 | 49 | private void checkBox7_CheckedChanged_1(object sender, EventArgs e) 50 | { 51 | label7.Visible = false; 52 | } 53 | 54 | private void checkBox8_CheckedChanged_1(object sender, EventArgs e) 55 | { 56 | label8.Visible = false; 57 | } 58 | 59 | private void checkBox9_CheckedChanged_1(object sender, EventArgs e) 60 | { 61 | label9.Visible = false; 62 | } 63 | int n = 7; 64 | Random rnd = new Random(); 65 | private void button2_Click(object sender, EventArgs e) 66 | { 67 | n = rnd.Next(1, 9); 68 | string s = "..\\..\\images\\img" + n.ToString() + ".jpg"; 69 | Console.WriteLine(s); 70 | pictureBox1.ImageLocation = s; 71 | } 72 | 73 | private void button1_Click(object sender, EventArgs e) 74 | { 75 | switch (n) 76 | { 77 | case 1: 78 | MessageBox.Show("این مکان ارگ بم می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 79 | break; 80 | case 2: 81 | MessageBox.Show("این مکان چهل ستون می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 82 | break; 83 | case 3: 84 | MessageBox.Show("این مکان دروازه قران می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 85 | break; 86 | case 4: 87 | MessageBox.Show("ابن مکان گنبد سلطانیه می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 88 | break; 89 | case 5: 90 | MessageBox.Show("این مکان باغ ارم می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 91 | break; 92 | case 6: 93 | MessageBox.Show("این مکان غار علیصدر می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 94 | break; 95 | case 7: 96 | MessageBox.Show("این مکان مقبره فردوسی می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 97 | break; 98 | case 8: 99 | MessageBox.Show("این مکان ایلگلی می‌باشد", "پاسخ صحیح", MessageBoxButtons.OKCancel); 100 | break; 101 | } 102 | } 103 | } 104 | } 105 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 Tour 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 | -------------------------------------------------------------------------------- /C3/W4/Tour/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("Tour")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("Tour")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 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("8c274965-3e22-4be7-bdf2-b0e962211fae")] 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 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 Tour.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", "16.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("Tour.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 img1 { 67 | get { 68 | object obj = ResourceManager.GetObject("img1", 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 img2 { 77 | get { 78 | object obj = ResourceManager.GetObject("img2", 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 img3 { 87 | get { 88 | object obj = ResourceManager.GetObject("img3", 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 img4 { 97 | get { 98 | object obj = ResourceManager.GetObject("img4", 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 img5 { 107 | get { 108 | object obj = ResourceManager.GetObject("img5", 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 img6 { 117 | get { 118 | object obj = ResourceManager.GetObject("img6", resourceCulture); 119 | return ((System.Drawing.Bitmap)(obj)); 120 | } 121 | } 122 | 123 | /// 124 | /// Looks up a localized resource of type System.Drawing.Bitmap. 125 | /// 126 | internal static System.Drawing.Bitmap img7 { 127 | get { 128 | object obj = ResourceManager.GetObject("img7", resourceCulture); 129 | return ((System.Drawing.Bitmap)(obj)); 130 | } 131 | } 132 | 133 | /// 134 | /// Looks up a localized resource of type System.Drawing.Bitmap. 135 | /// 136 | internal static System.Drawing.Bitmap img8 { 137 | get { 138 | object obj = ResourceManager.GetObject("img8", resourceCulture); 139 | return ((System.Drawing.Bitmap)(obj)); 140 | } 141 | } 142 | } 143 | } 144 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 | ..\images\img1.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\images\img2.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | 128 | ..\images\img3.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 129 | 130 | 131 | ..\images\img4.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 132 | 133 | 134 | ..\images\img5.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 135 | 136 | 137 | ..\images\img6.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 138 | 139 | 140 | ..\images\img7.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 141 | 142 | 143 | ..\images\img8.jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 144 | 145 | -------------------------------------------------------------------------------- /C3/W4/Tour/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 | 12 | namespace Tour.Properties 13 | { 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 17 | { 18 | 19 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 20 | 21 | public static Settings Default 22 | { 23 | get 24 | { 25 | return defaultInstance; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /C3/W4/Tour/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /C3/W4/Tour/Tour.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {8C274965-3E22-4BE7-BDF2-B0E962211FAE} 8 | WinExe 9 | Tour 10 | Tour 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Form 51 | 52 | 53 | Form1.cs 54 | 55 | 56 | 57 | 58 | Form1.cs 59 | 60 | 61 | ResXFileCodeGenerator 62 | Designer 63 | Resources.Designer.cs 64 | 65 | 66 | SettingsSingleFileGenerator 67 | Settings.Designer.cs 68 | 69 | 70 | True 71 | True 72 | Resources.resx 73 | 74 | 75 | True 76 | Settings.settings 77 | True 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 | -------------------------------------------------------------------------------- /C3/W4/Tour/Tour.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31005.135 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Tour", "Tour.csproj", "{8C274965-3E22-4BE7-BDF2-B0E962211FAE}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {8C274965-3E22-4BE7-BDF2-B0E962211FAE}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {8C274965-3E22-4BE7-BDF2-B0E962211FAE}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {8C274965-3E22-4BE7-BDF2-B0E962211FAE}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {8C274965-3E22-4BE7-BDF2-B0E962211FAE}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {0E541D74-9523-4B0D-8B1D-149D58081A77} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /C3/W4/Tour/bin/Debug/Tour.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/bin/Debug/Tour.exe -------------------------------------------------------------------------------- /C3/W4/Tour/bin/Debug/Tour.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W4/Tour/bin/Debug/Tour.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/bin/Debug/Tour.pdb -------------------------------------------------------------------------------- /C3/W4/Tour/images/img1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img1.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img2.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img3.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img4.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img5.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img5.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img6.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img6.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img7.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img7.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/images/img8.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/images/img8.jpg -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.Form1.resources -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.Properties.Resources.resources -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8069502011d0681850e57a53d5a1673222f430a6 2 | -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\Tour\bin\Debug\Tour.exe.config 2 | F:\Tour\bin\Debug\Tour.exe 3 | F:\Tour\bin\Debug\Tour.pdb 4 | F:\Tour\obj\Debug\Tour.csprojAssemblyReference.cache 5 | F:\Tour\obj\Debug\Tour.Form1.resources 6 | F:\Tour\obj\Debug\Tour.Properties.Resources.resources 7 | F:\Tour\obj\Debug\Tour.csproj.GenerateResource.cache 8 | F:\Tour\obj\Debug\Tour.csproj.CoreCompileInputs.cache 9 | F:\Tour\obj\Debug\Tour.exe 10 | F:\Tour\obj\Debug\Tour.pdb 11 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\bin\Debug\Tour.exe.config 12 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\bin\Debug\Tour.exe 13 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\bin\Debug\Tour.pdb 14 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.csprojAssemblyReference.cache 15 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.Form1.resources 16 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.Properties.Resources.resources 17 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.csproj.GenerateResource.cache 18 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.csproj.CoreCompileInputs.cache 19 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.exe 20 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W4\Tour\obj\Debug\Tour.pdb 21 | -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.exe -------------------------------------------------------------------------------- /C3/W4/Tour/obj/Debug/Tour.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W4/Tour/obj/Debug/Tour.pdb -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/.vs/PersonalInfo/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/.vs/PersonalInfo/v16/.suo -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace PersonalInfo 3 | { 4 | partial class Form1 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.tabControl1 = new System.Windows.Forms.TabControl(); 33 | this.tabPage1 = new System.Windows.Forms.TabPage(); 34 | this.tabPage2 = new System.Windows.Forms.TabPage(); 35 | this.button1 = new System.Windows.Forms.Button(); 36 | this.button2 = new System.Windows.Forms.Button(); 37 | this.panel1 = new System.Windows.Forms.Panel(); 38 | this.panel2 = new System.Windows.Forms.Panel(); 39 | this.label1 = new System.Windows.Forms.Label(); 40 | this.label2 = new System.Windows.Forms.Label(); 41 | this.label3 = new System.Windows.Forms.Label(); 42 | this.label4 = new System.Windows.Forms.Label(); 43 | this.label5 = new System.Windows.Forms.Label(); 44 | this.label6 = new System.Windows.Forms.Label(); 45 | this.textBox1 = new System.Windows.Forms.TextBox(); 46 | this.textBox2 = new System.Windows.Forms.TextBox(); 47 | this.textBox3 = new System.Windows.Forms.TextBox(); 48 | this.textBox4 = new System.Windows.Forms.TextBox(); 49 | this.textBox5 = new System.Windows.Forms.TextBox(); 50 | this.textBox6 = new System.Windows.Forms.TextBox(); 51 | this.textBox7 = new System.Windows.Forms.TextBox(); 52 | this.label7 = new System.Windows.Forms.Label(); 53 | this.label8 = new System.Windows.Forms.Label(); 54 | this.label9 = new System.Windows.Forms.Label(); 55 | this.label10 = new System.Windows.Forms.Label(); 56 | this.textBox8 = new System.Windows.Forms.TextBox(); 57 | this.textBox9 = new System.Windows.Forms.TextBox(); 58 | this.textBox10 = new System.Windows.Forms.TextBox(); 59 | this.panel3 = new System.Windows.Forms.Panel(); 60 | this.button3 = new System.Windows.Forms.Button(); 61 | this.button4 = new System.Windows.Forms.Button(); 62 | this.label11 = new System.Windows.Forms.Label(); 63 | this.label12 = new System.Windows.Forms.Label(); 64 | this.label13 = new System.Windows.Forms.Label(); 65 | this.label14 = new System.Windows.Forms.Label(); 66 | this.label15 = new System.Windows.Forms.Label(); 67 | this.label16 = new System.Windows.Forms.Label(); 68 | this.label17 = new System.Windows.Forms.Label(); 69 | this.textBox11 = new System.Windows.Forms.TextBox(); 70 | this.textBox12 = new System.Windows.Forms.TextBox(); 71 | this.textBox13 = new System.Windows.Forms.TextBox(); 72 | this.textBox14 = new System.Windows.Forms.TextBox(); 73 | this.textBox15 = new System.Windows.Forms.TextBox(); 74 | this.textBox16 = new System.Windows.Forms.TextBox(); 75 | this.tabControl1.SuspendLayout(); 76 | this.tabPage1.SuspendLayout(); 77 | this.tabPage2.SuspendLayout(); 78 | this.panel1.SuspendLayout(); 79 | this.panel2.SuspendLayout(); 80 | this.panel3.SuspendLayout(); 81 | this.SuspendLayout(); 82 | // 83 | // tabControl1 84 | // 85 | this.tabControl1.Controls.Add(this.tabPage1); 86 | this.tabControl1.Controls.Add(this.tabPage2); 87 | this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill; 88 | this.tabControl1.Location = new System.Drawing.Point(0, 0); 89 | this.tabControl1.Name = "tabControl1"; 90 | this.tabControl1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 91 | this.tabControl1.RightToLeftLayout = true; 92 | this.tabControl1.SelectedIndex = 0; 93 | this.tabControl1.Size = new System.Drawing.Size(800, 450); 94 | this.tabControl1.TabIndex = 0; 95 | // 96 | // tabPage1 97 | // 98 | this.tabPage1.Controls.Add(this.panel2); 99 | this.tabPage1.Controls.Add(this.panel1); 100 | this.tabPage1.Controls.Add(this.button2); 101 | this.tabPage1.Controls.Add(this.button1); 102 | this.tabPage1.Location = new System.Drawing.Point(4, 25); 103 | this.tabPage1.Name = "tabPage1"; 104 | this.tabPage1.Padding = new System.Windows.Forms.Padding(3); 105 | this.tabPage1.Size = new System.Drawing.Size(792, 421); 106 | this.tabPage1.TabIndex = 0; 107 | this.tabPage1.Text = "مشخصات فردی "; 108 | this.tabPage1.UseVisualStyleBackColor = true; 109 | // 110 | // tabPage2 111 | // 112 | this.tabPage2.Controls.Add(this.button3); 113 | this.tabPage2.Controls.Add(this.button4); 114 | this.tabPage2.Controls.Add(this.panel3); 115 | this.tabPage2.Location = new System.Drawing.Point(4, 25); 116 | this.tabPage2.Name = "tabPage2"; 117 | this.tabPage2.Padding = new System.Windows.Forms.Padding(3); 118 | this.tabPage2.Size = new System.Drawing.Size(792, 421); 119 | this.tabPage2.TabIndex = 1; 120 | this.tabPage2.Text = "اطلاعات تحصیلی"; 121 | this.tabPage2.UseVisualStyleBackColor = true; 122 | // 123 | // button1 124 | // 125 | this.button1.Location = new System.Drawing.Point(659, 365); 126 | this.button1.Name = "button1"; 127 | this.button1.Size = new System.Drawing.Size(110, 34); 128 | this.button1.TabIndex = 0; 129 | this.button1.Text = "ثبت"; 130 | this.button1.UseVisualStyleBackColor = true; 131 | this.button1.Click += new System.EventHandler(this.button1_Click); 132 | // 133 | // button2 134 | // 135 | this.button2.Location = new System.Drawing.Point(544, 365); 136 | this.button2.Name = "button2"; 137 | this.button2.Size = new System.Drawing.Size(109, 34); 138 | this.button2.TabIndex = 1; 139 | this.button2.Text = "انصراف"; 140 | this.button2.UseVisualStyleBackColor = true; 141 | this.button2.Click += new System.EventHandler(this.button2_Click); 142 | // 143 | // panel1 144 | // 145 | this.panel1.BackColor = System.Drawing.Color.Honeydew; 146 | this.panel1.Controls.Add(this.textBox6); 147 | this.panel1.Controls.Add(this.textBox5); 148 | this.panel1.Controls.Add(this.textBox4); 149 | this.panel1.Controls.Add(this.textBox3); 150 | this.panel1.Controls.Add(this.textBox2); 151 | this.panel1.Controls.Add(this.textBox1); 152 | this.panel1.Controls.Add(this.label6); 153 | this.panel1.Controls.Add(this.label5); 154 | this.panel1.Controls.Add(this.label4); 155 | this.panel1.Controls.Add(this.label3); 156 | this.panel1.Controls.Add(this.label2); 157 | this.panel1.Controls.Add(this.label1); 158 | this.panel1.Location = new System.Drawing.Point(25, 39); 159 | this.panel1.Name = "panel1"; 160 | this.panel1.Size = new System.Drawing.Size(744, 115); 161 | this.panel1.TabIndex = 2; 162 | // 163 | // panel2 164 | // 165 | this.panel2.BackColor = System.Drawing.Color.Honeydew; 166 | this.panel2.Controls.Add(this.textBox10); 167 | this.panel2.Controls.Add(this.textBox9); 168 | this.panel2.Controls.Add(this.textBox8); 169 | this.panel2.Controls.Add(this.label10); 170 | this.panel2.Controls.Add(this.label9); 171 | this.panel2.Controls.Add(this.label8); 172 | this.panel2.Controls.Add(this.label7); 173 | this.panel2.Controls.Add(this.textBox7); 174 | this.panel2.Location = new System.Drawing.Point(25, 160); 175 | this.panel2.Name = "panel2"; 176 | this.panel2.Size = new System.Drawing.Size(744, 182); 177 | this.panel2.TabIndex = 3; 178 | // 179 | // label1 180 | // 181 | this.label1.AutoSize = true; 182 | this.label1.Location = new System.Drawing.Point(683, 19); 183 | this.label1.Name = "label1"; 184 | this.label1.Size = new System.Drawing.Size(19, 17); 185 | this.label1.TabIndex = 0; 186 | this.label1.Text = "نام"; 187 | // 188 | // label2 189 | // 190 | this.label2.AutoSize = true; 191 | this.label2.Location = new System.Drawing.Point(683, 48); 192 | this.label2.Name = "label2"; 193 | this.label2.Size = new System.Drawing.Size(40, 17); 194 | this.label2.TabIndex = 1; 195 | this.label2.Text = "جنسیت"; 196 | // 197 | // label3 198 | // 199 | this.label3.AutoSize = true; 200 | this.label3.Location = new System.Drawing.Point(683, 78); 201 | this.label3.Name = "label3"; 202 | this.label3.Size = new System.Drawing.Size(47, 17); 203 | this.label3.TabIndex = 2; 204 | this.label3.Text = "سال تولد"; 205 | // 206 | // label4 207 | // 208 | this.label4.AutoSize = true; 209 | this.label4.Location = new System.Drawing.Point(348, 19); 210 | this.label4.Name = "label4"; 211 | this.label4.Size = new System.Drawing.Size(65, 17); 212 | this.label4.TabIndex = 3; 213 | this.label4.Text = "نام خانوادگی"; 214 | // 215 | // label5 216 | // 217 | this.label5.AutoSize = true; 218 | this.label5.Location = new System.Drawing.Point(348, 48); 219 | this.label5.Name = "label5"; 220 | this.label5.Size = new System.Drawing.Size(77, 17); 221 | this.label5.TabIndex = 4; 222 | this.label5.Text = "شماره شناسنامه"; 223 | // 224 | // label6 225 | // 226 | this.label6.AutoSize = true; 227 | this.label6.Location = new System.Drawing.Point(348, 78); 228 | this.label6.Name = "label6"; 229 | this.label6.Size = new System.Drawing.Size(49, 17); 230 | this.label6.TabIndex = 5; 231 | this.label6.Text = "محل تولد"; 232 | // 233 | // textBox1 234 | // 235 | this.textBox1.Location = new System.Drawing.Point(492, 16); 236 | this.textBox1.Name = "textBox1"; 237 | this.textBox1.Size = new System.Drawing.Size(185, 22); 238 | this.textBox1.TabIndex = 6; 239 | // 240 | // textBox2 241 | // 242 | this.textBox2.Location = new System.Drawing.Point(570, 48); 243 | this.textBox2.Name = "textBox2"; 244 | this.textBox2.Size = new System.Drawing.Size(107, 22); 245 | this.textBox2.TabIndex = 7; 246 | // 247 | // textBox3 248 | // 249 | this.textBox3.Location = new System.Drawing.Point(533, 76); 250 | this.textBox3.Name = "textBox3"; 251 | this.textBox3.Size = new System.Drawing.Size(144, 22); 252 | this.textBox3.TabIndex = 8; 253 | // 254 | // textBox4 255 | // 256 | this.textBox4.Location = new System.Drawing.Point(118, 19); 257 | this.textBox4.Name = "textBox4"; 258 | this.textBox4.Size = new System.Drawing.Size(224, 22); 259 | this.textBox4.TabIndex = 9; 260 | // 261 | // textBox5 262 | // 263 | this.textBox5.Location = new System.Drawing.Point(157, 48); 264 | this.textBox5.Name = "textBox5"; 265 | this.textBox5.Size = new System.Drawing.Size(185, 22); 266 | this.textBox5.TabIndex = 10; 267 | // 268 | // textBox6 269 | // 270 | this.textBox6.Location = new System.Drawing.Point(177, 78); 271 | this.textBox6.Name = "textBox6"; 272 | this.textBox6.Size = new System.Drawing.Size(165, 22); 273 | this.textBox6.TabIndex = 11; 274 | // 275 | // textBox7 276 | // 277 | this.textBox7.Location = new System.Drawing.Point(36, 21); 278 | this.textBox7.Multiline = true; 279 | this.textBox7.Name = "textBox7"; 280 | this.textBox7.Size = new System.Drawing.Size(640, 53); 281 | this.textBox7.TabIndex = 0; 282 | // 283 | // label7 284 | // 285 | this.label7.AutoSize = true; 286 | this.label7.Location = new System.Drawing.Point(680, 24); 287 | this.label7.Name = "label7"; 288 | this.label7.Size = new System.Drawing.Size(94, 17); 289 | this.label7.TabIndex = 1; 290 | this.label7.Text = "نشانی محل سکونت"; 291 | this.label7.Click += new System.EventHandler(this.label7_Click); 292 | // 293 | // label8 294 | // 295 | this.label8.AutoSize = true; 296 | this.label8.Location = new System.Drawing.Point(681, 82); 297 | this.label8.Name = "label8"; 298 | this.label8.Size = new System.Drawing.Size(56, 17); 299 | this.label8.TabIndex = 2; 300 | this.label8.Text = "شماره تلفن"; 301 | // 302 | // label9 303 | // 304 | this.label9.AutoSize = true; 305 | this.label9.Location = new System.Drawing.Point(680, 107); 306 | this.label9.Name = "label9"; 307 | this.label9.Size = new System.Drawing.Size(77, 17); 308 | this.label9.TabIndex = 3; 309 | this.label9.Text = "نشانی محل کار"; 310 | // 311 | // label10 312 | // 313 | this.label10.AutoSize = true; 314 | this.label10.Location = new System.Drawing.Point(683, 136); 315 | this.label10.Name = "label10"; 316 | this.label10.Size = new System.Drawing.Size(28, 17); 317 | this.label10.TabIndex = 4; 318 | this.label10.Text = "شغل"; 319 | // 320 | // textBox8 321 | // 322 | this.textBox8.Location = new System.Drawing.Point(576, 80); 323 | this.textBox8.Name = "textBox8"; 324 | this.textBox8.Size = new System.Drawing.Size(100, 22); 325 | this.textBox8.TabIndex = 5; 326 | // 327 | // textBox9 328 | // 329 | this.textBox9.Location = new System.Drawing.Point(380, 108); 330 | this.textBox9.Name = "textBox9"; 331 | this.textBox9.Size = new System.Drawing.Size(297, 22); 332 | this.textBox9.TabIndex = 6; 333 | // 334 | // textBox10 335 | // 336 | this.textBox10.Location = new System.Drawing.Point(577, 136); 337 | this.textBox10.Name = "textBox10"; 338 | this.textBox10.Size = new System.Drawing.Size(100, 22); 339 | this.textBox10.TabIndex = 7; 340 | // 341 | // panel3 342 | // 343 | this.panel3.BackColor = System.Drawing.Color.Honeydew; 344 | this.panel3.Controls.Add(this.textBox16); 345 | this.panel3.Controls.Add(this.textBox15); 346 | this.panel3.Controls.Add(this.textBox14); 347 | this.panel3.Controls.Add(this.textBox13); 348 | this.panel3.Controls.Add(this.textBox12); 349 | this.panel3.Controls.Add(this.textBox11); 350 | this.panel3.Controls.Add(this.label17); 351 | this.panel3.Controls.Add(this.label16); 352 | this.panel3.Controls.Add(this.label15); 353 | this.panel3.Controls.Add(this.label14); 354 | this.panel3.Controls.Add(this.label13); 355 | this.panel3.Controls.Add(this.label12); 356 | this.panel3.Controls.Add(this.label11); 357 | this.panel3.Location = new System.Drawing.Point(28, 30); 358 | this.panel3.Name = "panel3"; 359 | this.panel3.Size = new System.Drawing.Size(741, 273); 360 | this.panel3.TabIndex = 0; 361 | // 362 | // button3 363 | // 364 | this.button3.Location = new System.Drawing.Point(544, 365); 365 | this.button3.Name = "button3"; 366 | this.button3.Size = new System.Drawing.Size(109, 34); 367 | this.button3.TabIndex = 3; 368 | this.button3.Text = "انصراف"; 369 | this.button3.UseVisualStyleBackColor = true; 370 | this.button3.Click += new System.EventHandler(this.button3_Click); 371 | // 372 | // button4 373 | // 374 | this.button4.Location = new System.Drawing.Point(659, 365); 375 | this.button4.Name = "button4"; 376 | this.button4.Size = new System.Drawing.Size(110, 34); 377 | this.button4.TabIndex = 2; 378 | this.button4.Text = "ادامه"; 379 | this.button4.UseVisualStyleBackColor = true; 380 | // 381 | // label11 382 | // 383 | this.label11.AutoSize = true; 384 | this.label11.Location = new System.Drawing.Point(519, 9); 385 | this.label11.Name = "label11"; 386 | this.label11.Size = new System.Drawing.Size(176, 17); 387 | this.label11.TabIndex = 0; 388 | this.label11.Text = "اطلاعات تحصیلی خود را وارد کنید."; 389 | this.label11.Click += new System.EventHandler(this.label11_Click); 390 | // 391 | // label12 392 | // 393 | this.label12.AutoSize = true; 394 | this.label12.Location = new System.Drawing.Point(610, 43); 395 | this.label12.Name = "label12"; 396 | this.label12.Size = new System.Drawing.Size(106, 17); 397 | this.label12.TabIndex = 1; 398 | this.label12.Text = "اخرین مدرک تحصیلی"; 399 | this.label12.Click += new System.EventHandler(this.label12_Click); 400 | // 401 | // label13 402 | // 403 | this.label13.AutoSize = true; 404 | this.label13.Location = new System.Drawing.Point(305, 46); 405 | this.label13.Name = "label13"; 406 | this.label13.Size = new System.Drawing.Size(72, 17); 407 | this.label13.TabIndex = 2; 408 | this.label13.Text = "رشته تحصیلی"; 409 | // 410 | // label14 411 | // 412 | this.label14.AutoSize = true; 413 | this.label14.Location = new System.Drawing.Point(686, 89); 414 | this.label14.Name = "label14"; 415 | this.label14.Size = new System.Drawing.Size(30, 17); 416 | this.label14.TabIndex = 3; 417 | this.label14.Text = "معدل"; 418 | // 419 | // label15 420 | // 421 | this.label15.AutoSize = true; 422 | this.label15.Location = new System.Drawing.Point(305, 92); 423 | this.label15.Name = "label15"; 424 | this.label15.Size = new System.Drawing.Size(75, 17); 425 | this.label15.TabIndex = 4; 426 | this.label15.Text = "سال اخذ مدرک"; 427 | // 428 | // label16 429 | // 430 | this.label16.AutoSize = true; 431 | this.label16.Location = new System.Drawing.Point(651, 141); 432 | this.label16.Name = "label16"; 433 | this.label16.Size = new System.Drawing.Size(65, 17); 434 | this.label16.TabIndex = 5; 435 | this.label16.Text = "محل تحصیل"; 436 | // 437 | // label17 438 | // 439 | this.label17.AutoSize = true; 440 | this.label17.Location = new System.Drawing.Point(620, 182); 441 | this.label17.Name = "label17"; 442 | this.label17.Size = new System.Drawing.Size(96, 17); 443 | this.label17.TabIndex = 6; 444 | this.label17.Text = "ادرس محل تحصیل"; 445 | // 446 | // textBox11 447 | // 448 | this.textBox11.Location = new System.Drawing.Point(464, 41); 449 | this.textBox11.Name = "textBox11"; 450 | this.textBox11.Size = new System.Drawing.Size(140, 22); 451 | this.textBox11.TabIndex = 7; 452 | this.textBox11.TextChanged += new System.EventHandler(this.textBox11_TextChanged); 453 | // 454 | // textBox12 455 | // 456 | this.textBox12.Location = new System.Drawing.Point(540, 87); 457 | this.textBox12.Name = "textBox12"; 458 | this.textBox12.Size = new System.Drawing.Size(140, 22); 459 | this.textBox12.TabIndex = 8; 460 | // 461 | // textBox13 462 | // 463 | this.textBox13.Location = new System.Drawing.Point(159, 43); 464 | this.textBox13.Name = "textBox13"; 465 | this.textBox13.Size = new System.Drawing.Size(140, 22); 466 | this.textBox13.TabIndex = 9; 467 | // 468 | // textBox14 469 | // 470 | this.textBox14.Location = new System.Drawing.Point(159, 92); 471 | this.textBox14.Name = "textBox14"; 472 | this.textBox14.Size = new System.Drawing.Size(140, 22); 473 | this.textBox14.TabIndex = 10; 474 | // 475 | // textBox15 476 | // 477 | this.textBox15.Location = new System.Drawing.Point(396, 141); 478 | this.textBox15.Name = "textBox15"; 479 | this.textBox15.Size = new System.Drawing.Size(244, 22); 480 | this.textBox15.TabIndex = 11; 481 | // 482 | // textBox16 483 | // 484 | this.textBox16.Location = new System.Drawing.Point(26, 182); 485 | this.textBox16.Multiline = true; 486 | this.textBox16.Name = "textBox16"; 487 | this.textBox16.Size = new System.Drawing.Size(588, 55); 488 | this.textBox16.TabIndex = 12; 489 | // 490 | // Form1 491 | // 492 | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); 493 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 494 | this.ClientSize = new System.Drawing.Size(800, 450); 495 | this.Controls.Add(this.tabControl1); 496 | this.Name = "Form1"; 497 | this.Text = "Form1"; 498 | this.tabControl1.ResumeLayout(false); 499 | this.tabPage1.ResumeLayout(false); 500 | this.tabPage2.ResumeLayout(false); 501 | this.panel1.ResumeLayout(false); 502 | this.panel1.PerformLayout(); 503 | this.panel2.ResumeLayout(false); 504 | this.panel2.PerformLayout(); 505 | this.panel3.ResumeLayout(false); 506 | this.panel3.PerformLayout(); 507 | this.ResumeLayout(false); 508 | 509 | } 510 | 511 | #endregion 512 | 513 | private System.Windows.Forms.TabControl tabControl1; 514 | private System.Windows.Forms.TabPage tabPage1; 515 | private System.Windows.Forms.TabPage tabPage2; 516 | private System.Windows.Forms.Button button1; 517 | private System.Windows.Forms.Button button2; 518 | private System.Windows.Forms.Panel panel2; 519 | private System.Windows.Forms.TextBox textBox10; 520 | private System.Windows.Forms.TextBox textBox9; 521 | private System.Windows.Forms.TextBox textBox8; 522 | private System.Windows.Forms.Label label10; 523 | private System.Windows.Forms.Label label9; 524 | private System.Windows.Forms.Label label8; 525 | private System.Windows.Forms.Label label7; 526 | private System.Windows.Forms.TextBox textBox7; 527 | private System.Windows.Forms.Panel panel1; 528 | private System.Windows.Forms.TextBox textBox6; 529 | private System.Windows.Forms.TextBox textBox5; 530 | private System.Windows.Forms.TextBox textBox4; 531 | private System.Windows.Forms.TextBox textBox3; 532 | private System.Windows.Forms.TextBox textBox2; 533 | private System.Windows.Forms.TextBox textBox1; 534 | private System.Windows.Forms.Label label6; 535 | private System.Windows.Forms.Label label5; 536 | private System.Windows.Forms.Label label4; 537 | private System.Windows.Forms.Label label3; 538 | private System.Windows.Forms.Label label2; 539 | private System.Windows.Forms.Label label1; 540 | private System.Windows.Forms.Button button3; 541 | private System.Windows.Forms.Button button4; 542 | private System.Windows.Forms.Panel panel3; 543 | private System.Windows.Forms.TextBox textBox16; 544 | private System.Windows.Forms.TextBox textBox15; 545 | private System.Windows.Forms.TextBox textBox14; 546 | private System.Windows.Forms.TextBox textBox13; 547 | private System.Windows.Forms.TextBox textBox12; 548 | private System.Windows.Forms.TextBox textBox11; 549 | private System.Windows.Forms.Label label17; 550 | private System.Windows.Forms.Label label16; 551 | private System.Windows.Forms.Label label15; 552 | private System.Windows.Forms.Label label14; 553 | private System.Windows.Forms.Label label13; 554 | private System.Windows.Forms.Label label12; 555 | private System.Windows.Forms.Label label11; 556 | } 557 | } 558 | 559 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 PersonalInfo 12 | { 13 | public partial class Form1 : Form 14 | { 15 | public Form1() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void button1_Click(object sender, EventArgs e) 21 | { 22 | tabControl1.SelectedTab = tabPage2; 23 | } 24 | 25 | private void button2_Click(object sender, EventArgs e) 26 | { 27 | this.Close(); 28 | } 29 | 30 | private void label7_Click(object sender, EventArgs e) 31 | { 32 | 33 | } 34 | 35 | private void label11_Click(object sender, EventArgs e) 36 | { 37 | 38 | } 39 | 40 | private void label12_Click(object sender, EventArgs e) 41 | { 42 | 43 | } 44 | 45 | private void textBox11_TextChanged(object sender, EventArgs e) 46 | { 47 | 48 | } 49 | 50 | private void button3_Click(object sender, EventArgs e) 51 | { 52 | this.Close(); 53 | } 54 | } 55 | } 56 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/PersonalInfo.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {2AC2CA55-8EF6-4E1F-A73F-DBE60081684A} 8 | WinExe 9 | PersonalInfo 10 | PersonalInfo 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Form 51 | 52 | 53 | Form1.cs 54 | 55 | 56 | 57 | 58 | Form1.cs 59 | 60 | 61 | ResXFileCodeGenerator 62 | Resources.Designer.cs 63 | Designer 64 | 65 | 66 | True 67 | Resources.resx 68 | 69 | 70 | SettingsSingleFileGenerator 71 | Settings.Designer.cs 72 | 73 | 74 | True 75 | Settings.settings 76 | True 77 | 78 | 79 | 80 | 81 | 82 | 83 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/PersonalInfo.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31005.135 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "PersonalInfo", "PersonalInfo.csproj", "{2AC2CA55-8EF6-4E1F-A73F-DBE60081684A}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {2AC2CA55-8EF6-4E1F-A73F-DBE60081684A}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {2AC2CA55-8EF6-4E1F-A73F-DBE60081684A}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {2AC2CA55-8EF6-4E1F-A73F-DBE60081684A}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {2AC2CA55-8EF6-4E1F-A73F-DBE60081684A}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {5A2E4275-B21A-44DE-9B83-C9EEF140897F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 PersonalInfo 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 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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("PersonalInfo")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("PersonalInfo")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 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("2ac2ca55-8ef6-4e1f-a73f-dbe60081684a")] 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 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 | 12 | namespace PersonalInfo.Properties 13 | { 14 | /// 15 | /// A strongly-typed resource class, for looking up localized strings, etc. 16 | /// 17 | // This class was auto-generated by the StronglyTypedResourceBuilder 18 | // class via a tool like ResGen or Visual Studio. 19 | // To add or remove a member, edit your .ResX file then rerun ResGen 20 | // with the /str option, or rebuild your VS project. 21 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("System.Resources.Tools.StronglyTypedResourceBuilder", "4.0.0.0")] 22 | [global::System.Diagnostics.DebuggerNonUserCodeAttribute()] 23 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 24 | internal class Resources 25 | { 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 | /// 37 | /// Returns the cached ResourceManager instance used by this class. 38 | /// 39 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 40 | internal static global::System.Resources.ResourceManager ResourceManager 41 | { 42 | get 43 | { 44 | if ((resourceMan == null)) 45 | { 46 | global::System.Resources.ResourceManager temp = new global::System.Resources.ResourceManager("PersonalInfo.Properties.Resources", typeof(Resources).Assembly); 47 | resourceMan = temp; 48 | } 49 | return resourceMan; 50 | } 51 | } 52 | 53 | /// 54 | /// Overrides the current thread's CurrentUICulture property for all 55 | /// resource lookups using this strongly typed resource class. 56 | /// 57 | [global::System.ComponentModel.EditorBrowsableAttribute(global::System.ComponentModel.EditorBrowsableState.Advanced)] 58 | internal static global::System.Globalization.CultureInfo Culture 59 | { 60 | get 61 | { 62 | return resourceCulture; 63 | } 64 | set 65 | { 66 | resourceCulture = value; 67 | } 68 | } 69 | } 70 | } 71 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/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 | 12 | namespace PersonalInfo.Properties 13 | { 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 17 | { 18 | 19 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 20 | 21 | public static Settings Default 22 | { 23 | get 24 | { 25 | return defaultInstance; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/bin/Debug/PersonalInfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/bin/Debug/PersonalInfo.exe -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/bin/Debug/PersonalInfo.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/bin/Debug/PersonalInfo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/bin/Debug/PersonalInfo.pdb -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.Form1.resources -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.Properties.Resources.resources -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8069502011d0681850e57a53d5a1673222f430a6 2 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\bin\Debug\PersonalInfo.exe.config 2 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\bin\Debug\PersonalInfo.exe 3 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\bin\Debug\PersonalInfo.pdb 4 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.Form1.resources 5 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.Properties.Resources.resources 6 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.csproj.GenerateResource.cache 7 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.csproj.CoreCompileInputs.cache 8 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.exe 9 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.pdb 10 | F:\فنی و حرفه ای\11\توسعه و پایگاه\projects\Programming-And-database\E3\W5\PersonalInfo\obj\Debug\PersonalInfo.csprojAssemblyReference.cache 11 | -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.exe -------------------------------------------------------------------------------- /C3/W5/PersonalInfo/obj/Debug/PersonalInfo.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W5/PersonalInfo/obj/Debug/PersonalInfo.pdb -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/.vs/login/v16/.suo: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/.vs/login/v16/.suo -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/App.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Form1.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace WindowsFormsApp1 3 | { 4 | partial class LoginForm 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.pictureBox1 = new System.Windows.Forms.PictureBox(); 33 | this.textBox1 = new System.Windows.Forms.TextBox(); 34 | this.label1 = new System.Windows.Forms.Label(); 35 | this.label2 = new System.Windows.Forms.Label(); 36 | this.textBox2 = new System.Windows.Forms.TextBox(); 37 | this.checkBox1 = new System.Windows.Forms.CheckBox(); 38 | this.radioButton1 = new System.Windows.Forms.RadioButton(); 39 | this.radioButton2 = new System.Windows.Forms.RadioButton(); 40 | this.radioButton3 = new System.Windows.Forms.RadioButton(); 41 | this.button1 = new System.Windows.Forms.Button(); 42 | this.button2 = new System.Windows.Forms.Button(); 43 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); 44 | this.SuspendLayout(); 45 | // 46 | // pictureBox1 47 | // 48 | this.pictureBox1.Image = global::WindowsFormsApp1.Properties.Resources.my_logo; 49 | this.pictureBox1.Location = new System.Drawing.Point(38, 40); 50 | this.pictureBox1.Name = "pictureBox1"; 51 | this.pictureBox1.Size = new System.Drawing.Size(103, 102); 52 | this.pictureBox1.TabIndex = 0; 53 | this.pictureBox1.TabStop = false; 54 | // 55 | // textBox1 56 | // 57 | this.textBox1.Location = new System.Drawing.Point(170, 43); 58 | this.textBox1.Name = "textBox1"; 59 | this.textBox1.Size = new System.Drawing.Size(226, 22); 60 | this.textBox1.TabIndex = 1; 61 | this.textBox1.TextChanged += new System.EventHandler(this.textBox1_TextChanged); 62 | // 63 | // label1 64 | // 65 | this.label1.AutoSize = true; 66 | this.label1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 67 | this.label1.Location = new System.Drawing.Point(402, 46); 68 | this.label1.Name = "label1"; 69 | this.label1.Size = new System.Drawing.Size(58, 17); 70 | this.label1.TabIndex = 2; 71 | this.label1.Text = "نام کاربری"; 72 | this.label1.Click += new System.EventHandler(this.label1_Click); 73 | // 74 | // label2 75 | // 76 | this.label2.AutoSize = true; 77 | this.label2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 78 | this.label2.Location = new System.Drawing.Point(402, 85); 79 | this.label2.Name = "label2"; 80 | this.label2.Size = new System.Drawing.Size(55, 17); 81 | this.label2.TabIndex = 3; 82 | this.label2.Text = "رمز عبور"; 83 | // 84 | // textBox2 85 | // 86 | this.textBox2.Location = new System.Drawing.Point(170, 80); 87 | this.textBox2.Name = "textBox2"; 88 | this.textBox2.PasswordChar = '*'; 89 | this.textBox2.Size = new System.Drawing.Size(226, 22); 90 | this.textBox2.TabIndex = 4; 91 | this.textBox2.TextChanged += new System.EventHandler(this.textBox2_TextChanged); 92 | // 93 | // checkBox1 94 | // 95 | this.checkBox1.AutoSize = true; 96 | this.checkBox1.CheckAlign = System.Drawing.ContentAlignment.TopRight; 97 | this.checkBox1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 98 | this.checkBox1.Location = new System.Drawing.Point(289, 109); 99 | this.checkBox1.Name = "checkBox1"; 100 | this.checkBox1.Size = new System.Drawing.Size(107, 21); 101 | this.checkBox1.TabIndex = 5; 102 | this.checkBox1.Text = "نمایش رمز عبور"; 103 | this.checkBox1.UseVisualStyleBackColor = true; 104 | this.checkBox1.CheckedChanged += new System.EventHandler(this.checkBox1_CheckedChanged); 105 | // 106 | // radioButton1 107 | // 108 | this.radioButton1.AutoSize = true; 109 | this.radioButton1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 110 | this.radioButton1.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 111 | this.radioButton1.Location = new System.Drawing.Point(289, 136); 112 | this.radioButton1.Name = "radioButton1"; 113 | this.radioButton1.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 114 | this.radioButton1.Size = new System.Drawing.Size(47, 21); 115 | this.radioButton1.TabIndex = 6; 116 | this.radioButton1.Text = "معلم"; 117 | this.radioButton1.UseVisualStyleBackColor = true; 118 | this.radioButton1.CheckedChanged += new System.EventHandler(this.radioButton1_CheckedChanged_1); 119 | // 120 | // radioButton2 121 | // 122 | this.radioButton2.AutoSize = true; 123 | this.radioButton2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 124 | this.radioButton2.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 125 | this.radioButton2.Location = new System.Drawing.Point(210, 136); 126 | this.radioButton2.Name = "radioButton2"; 127 | this.radioButton2.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 128 | this.radioButton2.Size = new System.Drawing.Size(73, 21); 129 | this.radioButton2.TabIndex = 7; 130 | this.radioButton2.Text = "دانش‌اموز"; 131 | this.radioButton2.UseVisualStyleBackColor = true; 132 | // 133 | // radioButton3 134 | // 135 | this.radioButton3.AutoSize = true; 136 | this.radioButton3.Checked = true; 137 | this.radioButton3.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 138 | this.radioButton3.ImageAlign = System.Drawing.ContentAlignment.MiddleLeft; 139 | this.radioButton3.Location = new System.Drawing.Point(347, 136); 140 | this.radioButton3.Name = "radioButton3"; 141 | this.radioButton3.RightToLeft = System.Windows.Forms.RightToLeft.Yes; 142 | this.radioButton3.Size = new System.Drawing.Size(49, 21); 143 | this.radioButton3.TabIndex = 8; 144 | this.radioButton3.TabStop = true; 145 | this.radioButton3.Text = "مدیر"; 146 | this.radioButton3.UseVisualStyleBackColor = true; 147 | // 148 | // button1 149 | // 150 | this.button1.BackColor = System.Drawing.Color.Snow; 151 | this.button1.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 152 | this.button1.Location = new System.Drawing.Point(289, 168); 153 | this.button1.Name = "button1"; 154 | this.button1.Size = new System.Drawing.Size(75, 27); 155 | this.button1.TabIndex = 9; 156 | this.button1.Text = "ورود"; 157 | this.button1.UseVisualStyleBackColor = false; 158 | this.button1.Click += new System.EventHandler(this.button1_Click); 159 | // 160 | // button2 161 | // 162 | this.button2.BackColor = System.Drawing.Color.Snow; 163 | this.button2.ForeColor = System.Drawing.SystemColors.ActiveCaptionText; 164 | this.button2.Location = new System.Drawing.Point(106, 168); 165 | this.button2.Name = "button2"; 166 | this.button2.Size = new System.Drawing.Size(75, 27); 167 | this.button2.TabIndex = 10; 168 | this.button2.Text = "خروج"; 169 | this.button2.UseVisualStyleBackColor = false; 170 | // 171 | // LoginForm 172 | // 173 | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); 174 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 175 | this.BackColor = System.Drawing.Color.PaleTurquoise; 176 | this.ClientSize = new System.Drawing.Size(482, 203); 177 | this.Controls.Add(this.button2); 178 | this.Controls.Add(this.button1); 179 | this.Controls.Add(this.radioButton3); 180 | this.Controls.Add(this.radioButton2); 181 | this.Controls.Add(this.radioButton1); 182 | this.Controls.Add(this.checkBox1); 183 | this.Controls.Add(this.textBox2); 184 | this.Controls.Add(this.label2); 185 | this.Controls.Add(this.label1); 186 | this.Controls.Add(this.textBox1); 187 | this.Controls.Add(this.pictureBox1); 188 | this.ForeColor = System.Drawing.SystemColors.ActiveCaption; 189 | this.Name = "LoginForm"; 190 | this.Text = "ورود کاربر"; 191 | this.Load += new System.EventHandler(this.Form1_Load); 192 | ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); 193 | this.ResumeLayout(false); 194 | this.PerformLayout(); 195 | 196 | } 197 | 198 | #endregion 199 | 200 | private System.Windows.Forms.PictureBox pictureBox1; 201 | private System.Windows.Forms.TextBox textBox1; 202 | private System.Windows.Forms.Label label1; 203 | private System.Windows.Forms.Label label2; 204 | private System.Windows.Forms.TextBox textBox2; 205 | private System.Windows.Forms.CheckBox checkBox1; 206 | private System.Windows.Forms.RadioButton radioButton1; 207 | private System.Windows.Forms.RadioButton radioButton2; 208 | private System.Windows.Forms.RadioButton radioButton3; 209 | private System.Windows.Forms.Button button1; 210 | private System.Windows.Forms.Button button2; 211 | } 212 | } 213 | 214 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 WindowsFormsApp1 12 | { 13 | public partial class LoginForm : Form 14 | { 15 | public bool succeeded; 16 | public string userName; 17 | public LoginForm() 18 | { 19 | InitializeComponent(); 20 | } 21 | 22 | 23 | private void Form1_Load(object sender, EventArgs e) 24 | { 25 | Console.WriteLine(""); 26 | } 27 | 28 | private void checkedListBox1_SelectedIndexChanged(object sender, EventArgs e) 29 | { 30 | 31 | } 32 | 33 | private void radioButton1_CheckedChanged(object sender, EventArgs e) 34 | { 35 | 36 | } 37 | 38 | private void label1_Click(object sender, EventArgs e) 39 | { 40 | 41 | } 42 | 43 | private void textBox1_TextChanged(object sender, EventArgs e) 44 | { 45 | 46 | } 47 | 48 | private void checkBox1_CheckedChanged(object sender, EventArgs e) 49 | { 50 | if (checkBox1.Checked == true) 51 | textBox2.PasswordChar = '\0'; 52 | else 53 | textBox2.PasswordChar = '*'; 54 | } 55 | 56 | private void radioButton1_CheckedChanged_1(object sender, EventArgs e) 57 | { 58 | 59 | } 60 | 61 | private void button1_Click(object sender, EventArgs e) 62 | { 63 | if (textBox1.Text == "علیرضا" && textBox2.Text == "123") 64 | { 65 | succeeded = true; 66 | userName = textBox1.Text; 67 | this.Close(); 68 | 69 | } 70 | else 71 | MessageBox.Show(" خطا", " نام کاربری یا گذرواژه معتبر نیست ", MessageBoxButtons.OK 72 | , MessageBoxIcon.Error); 73 | } 74 | 75 | private void textBox2_TextChanged(object sender, EventArgs e) 76 | { 77 | 78 | } 79 | } 80 | } 81 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Form2.Designer.cs: -------------------------------------------------------------------------------- 1 |  2 | namespace WindowsFormsApp1 3 | { 4 | partial class MainForm 5 | { 6 | /// 7 | /// Required designer variable. 8 | /// 9 | private System.ComponentModel.IContainer components = null; 10 | 11 | /// 12 | /// Clean up any resources being used. 13 | /// 14 | /// true if managed resources should be disposed; otherwise, false. 15 | protected override void Dispose(bool disposing) 16 | { 17 | if (disposing && (components != null)) 18 | { 19 | components.Dispose(); 20 | } 21 | base.Dispose(disposing); 22 | } 23 | 24 | #region Windows Form Designer generated code 25 | 26 | /// 27 | /// Required method for Designer support - do not modify 28 | /// the contents of this method with the code editor. 29 | /// 30 | private void InitializeComponent() 31 | { 32 | this.label1 = new System.Windows.Forms.Label(); 33 | this.SuspendLayout(); 34 | // 35 | // label1 36 | // 37 | this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 7.8F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0))); 38 | this.label1.ForeColor = System.Drawing.Color.Lime; 39 | this.label1.Location = new System.Drawing.Point(210, 189); 40 | this.label1.Name = "label1"; 41 | this.label1.Size = new System.Drawing.Size(401, 23); 42 | this.label1.TabIndex = 0; 43 | this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter; 44 | // 45 | // MainForm 46 | // 47 | this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F); 48 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; 49 | this.ClientSize = new System.Drawing.Size(800, 450); 50 | this.Controls.Add(this.label1); 51 | this.Name = "MainForm"; 52 | this.Text = "Form2"; 53 | this.Load += new System.EventHandler(this.Form2_Load); 54 | this.ResumeLayout(false); 55 | 56 | } 57 | 58 | #endregion 59 | 60 | private System.Windows.Forms.Label label1; 61 | } 62 | } -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Form2.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 WindowsFormsApp1 12 | { 13 | public partial class MainForm : Form 14 | { 15 | public MainForm() 16 | { 17 | InitializeComponent(); 18 | } 19 | 20 | private void Form2_Load(object sender, EventArgs e) 21 | { 22 | LoginForm frm = new LoginForm(); 23 | frm.ShowDialog(); 24 | if (frm.succeeded) 25 | { 26 | label1.Text = " کاربر گرامی " + frm.userName + "خوش آمدید"; 27 | } 28 | else 29 | this.Close(); 30 | } 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Form2.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 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 WindowsFormsApp1 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 MainForm()); 20 | } 21 | } 22 | } 23 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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("WindowsFormsApp1")] 9 | [assembly: AssemblyDescription("")] 10 | [assembly: AssemblyConfiguration("")] 11 | [assembly: AssemblyCompany("")] 12 | [assembly: AssemblyProduct("WindowsFormsApp1")] 13 | [assembly: AssemblyCopyright("Copyright © 2021")] 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("1e7ae000-0cf1-4418-85a6-8d452c43d132")] 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 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 WindowsFormsApp1.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", "16.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("WindowsFormsApp1.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 my_logo { 67 | get { 68 | object obj = ResourceManager.GetObject("my logo", 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 Wallpaper__52_ { 77 | get { 78 | object obj = ResourceManager.GetObject("Wallpaper (52)", resourceCulture); 79 | return ((System.Drawing.Bitmap)(obj)); 80 | } 81 | } 82 | } 83 | } 84 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 | ..\Resources\Wallpaper (52).jpg;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 123 | 124 | 125 | ..\Resources\my logo.png;System.Drawing.Bitmap, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a 126 | 127 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/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 | 12 | namespace WindowsFormsApp1.Properties 13 | { 14 | [global::System.Runtime.CompilerServices.CompilerGeneratedAttribute()] 15 | [global::System.CodeDom.Compiler.GeneratedCodeAttribute("Microsoft.VisualStudio.Editors.SettingsDesigner.SettingsSingleFileGenerator", "11.0.0.0")] 16 | internal sealed partial class Settings : global::System.Configuration.ApplicationSettingsBase 17 | { 18 | 19 | private static Settings defaultInstance = ((Settings)(global::System.Configuration.ApplicationSettingsBase.Synchronized(new Settings()))); 20 | 21 | public static Settings Default 22 | { 23 | get 24 | { 25 | return defaultInstance; 26 | } 27 | } 28 | } 29 | } 30 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Properties/Settings.settings: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Resources/Wallpaper (52).jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/Resources/Wallpaper (52).jpg -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/Resources/my logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/Resources/my logo.png -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.exe.config: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/bin/Debug/WindowsFormsApp1.pdb -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/login.csproj: -------------------------------------------------------------------------------- 1 |  2 | 3 | 4 | 5 | Debug 6 | AnyCPU 7 | {1E7AE000-0CF1-4418-85A6-8D452C43D132} 8 | WinExe 9 | WindowsFormsApp1 10 | WindowsFormsApp1 11 | v4.7.2 12 | 512 13 | true 14 | true 15 | 16 | 17 | AnyCPU 18 | true 19 | full 20 | false 21 | bin\Debug\ 22 | DEBUG;TRACE 23 | prompt 24 | 4 25 | 26 | 27 | AnyCPU 28 | pdbonly 29 | true 30 | bin\Release\ 31 | TRACE 32 | prompt 33 | 4 34 | 35 | 36 | 37 | 38 | 39 | 40 | 41 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | Form 51 | 52 | 53 | Form1.cs 54 | 55 | 56 | Form 57 | 58 | 59 | Form2.cs 60 | 61 | 62 | 63 | 64 | Form1.cs 65 | 66 | 67 | Form2.cs 68 | 69 | 70 | ResXFileCodeGenerator 71 | Resources.Designer.cs 72 | Designer 73 | 74 | 75 | True 76 | Resources.resx 77 | True 78 | 79 | 80 | SettingsSingleFileGenerator 81 | Settings.Designer.cs 82 | 83 | 84 | True 85 | Settings.settings 86 | True 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/.NETFramework,Version=v4.7.2.AssemblyAttributes.cs: -------------------------------------------------------------------------------- 1 | // 2 | using System; 3 | using System.Reflection; 4 | [assembly: global::System.Runtime.Versioning.TargetFrameworkAttribute(".NETFramework,Version=v4.7.2", FrameworkDisplayName = ".NET Framework 4.7.2")] 5 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferences.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/DesignTimeResolveAssemblyReferencesInput.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/TempPE/Properties.Resources.Designer.cs.dll -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Form1.resources -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.LoginForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.LoginForm.resources -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.MainForm.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.MainForm.resources -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.Properties.Resources.resources -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 8069502011d0681850e57a53d5a1673222f430a6 2 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe.config 2 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe 3 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.pdb 4 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csprojAssemblyReference.cache 5 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Form1.resources 6 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Properties.Resources.resources 7 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.GenerateResource.cache 8 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.csproj.CoreCompileInputs.cache 9 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.exe 10 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.pdb 11 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.exe -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/WindowsFormsApp1.pdb -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csproj.CoreCompileInputs.cache: -------------------------------------------------------------------------------- 1 | 1706c681f1b40505fa3816f7880d2b5b071638e5 2 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csproj.FileListAbsolute.txt: -------------------------------------------------------------------------------- 1 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe.config 2 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.exe 3 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\bin\Debug\WindowsFormsApp1.pdb 4 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\login.csprojAssemblyReference.cache 5 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.LoginForm.resources 6 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.Properties.Resources.resources 7 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\login.csproj.GenerateResource.cache 8 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\login.csproj.CoreCompileInputs.cache 9 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.exe 10 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.pdb 11 | C:\Users\svs\source\repos\WindowsFormsApp1\WindowsFormsApp1\obj\Debug\WindowsFormsApp1.MainForm.resources 12 | -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csproj.GenerateResource.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csproj.GenerateResource.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csprojAssemblyReference.cache: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/samadvalipour/Programming-And-database/fe23e7c6ed5a46ba1d6191d160a659dcfc185579/C3/W6/WindowsFormsApp1/WindowsFormsApp1/obj/Debug/login.csprojAssemblyReference.cache -------------------------------------------------------------------------------- /C3/W6/WindowsFormsApp1/login.sln: -------------------------------------------------------------------------------- 1 |  2 | Microsoft Visual Studio Solution File, Format Version 12.00 3 | # Visual Studio Version 16 4 | VisualStudioVersion = 16.0.31005.135 5 | MinimumVisualStudioVersion = 10.0.40219.1 6 | Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "login", "WindowsFormsApp1\login.csproj", "{1E7AE000-0CF1-4418-85A6-8D452C43D132}" 7 | EndProject 8 | Global 9 | GlobalSection(SolutionConfigurationPlatforms) = preSolution 10 | Debug|Any CPU = Debug|Any CPU 11 | Release|Any CPU = Release|Any CPU 12 | EndGlobalSection 13 | GlobalSection(ProjectConfigurationPlatforms) = postSolution 14 | {1E7AE000-0CF1-4418-85A6-8D452C43D132}.Debug|Any CPU.ActiveCfg = Debug|Any CPU 15 | {1E7AE000-0CF1-4418-85A6-8D452C43D132}.Debug|Any CPU.Build.0 = Debug|Any CPU 16 | {1E7AE000-0CF1-4418-85A6-8D452C43D132}.Release|Any CPU.ActiveCfg = Release|Any CPU 17 | {1E7AE000-0CF1-4418-85A6-8D452C43D132}.Release|Any CPU.Build.0 = Release|Any CPU 18 | EndGlobalSection 19 | GlobalSection(SolutionProperties) = preSolution 20 | HideSolutionNode = FALSE 21 | EndGlobalSection 22 | GlobalSection(ExtensibilityGlobals) = postSolution 23 | SolutionGuid = {79FB12B9-8284-4E8F-8A0B-6DBC4F999F4F} 24 | EndGlobalSection 25 | EndGlobal 26 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Programming-development-And-database 2 | Educational projects for the book "programming development and database " 3 | 4 | programming development and database is an 11th grade book of Technical & Vocational schools in iran, in the network and computer software field. 5 | in this ripasitory, I (maybe we, if other teachers join me) develop projecs of this book. 6 | 7 |

repository structure

8 | in this repasitory Each folder (Cn) is equivalent to one chapter of the book and in each folder (Cn) there are several folders, each folder (Wn) is equivalent to one workshop of the chapter. 9 | 10 | --------------------------------------------------------------------------------