C# Hesap Makinesi Yapımı Form Uygulaması
Merhaba arkadaşlar bugün sizlere C#’da basit bir hesap makinesi nasıl yapılır onu göstericem.
ilk önce Visual Studio programımızı açalım ardından “File > New > Project > Form Application” menüsünü takip edip projemize isim verip oluşturalım.
Alttaki örnekde tasarım verilmiştir. Textbox’ımızın MultiLine özelliğini aktif edip boyutunu büyüttük(2 satır olacak şekilde) sebebini birazdan anlatıcam.
Tasarımı verdiğimize göre artık kodlarımıza geçelim.
Aşağıdaki kodumuzda ilk if bloğunda henüz bir toplama çıkartma çarpma bölme işlemi yapıp yapmadığımızı kontrol ediyoruz, ardından 2. if bloğumuzda karakter sınırımızı aşıp aşmadığını kontrol ediyoruz ve ekrana yazdırıyoruz. Eğer ilk if bloğu sonucunda kontrol ‘0’ dan büyük bir sayı ise else çalışır ve değerleri önce başlangıç değerlerine geri çevirip daha sonra ekrana yazdırma işlemini yapar.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "1"; alt += "1"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "1"; alt += "1"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "2"; alt += "2"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "2"; alt += "2"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "3"; alt += "3"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "3"; alt += "3"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "4"; alt += "4"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "4"; alt += "4"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "5"; alt += "5"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "5"; alt += "5"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "6"; alt += "6"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "6"; alt += "6"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "7"; alt += "7"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "7"; alt += "7"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "8"; alt += "8"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "8"; alt += "8"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "9"; alt += "9"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "9"; alt += "9"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "0"; alt += "0"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "0"; alt += "0"; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 | if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + ","; alt += ","; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + ","; alt += ","; } |
Not: Aşağıdaki Environment.NewLine kodu bir alt satıra geçmek için kullanılmıştır.
1 2 3 4 5 6 7 8 9 | if (alt.Length == 0) { //eğer boş ise silme işlemi hata verecektir. } else { textBox1.Text = ust + Environment.NewLine + alt.Substring(0, alt.Length - 1); alt = alt.Substring(0, alt.Length - 1); } |
1 2 3 4 | textBox1.Clear(); islem = 0; ust = ""; alt = ""; |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 | kontrol++; islem += float.Parse(alt); if(ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; } else { string duzenle = ust + "+" + alt; if(duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "+" + alt; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem -= float.Parse(alt); string duzenle = ust + "-" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "-" + alt; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem *= float.Parse(alt); string duzenle = ust + "x" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "x" + alt; } |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 | kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem /= float.Parse(alt); string duzenle = ust + "/" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "/" + alt; } |
Kodlar bu şekilde arkadaşlar alt tarafta projenin kodlarını bütün olarak görmekteyiz.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 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 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 | using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace HesapMakinesi { public partial class Form1 : Form { public Form1() { InitializeComponent(); } string ust = "", alt = ""; int sy = 0, kontrol = 0; float islem = 0; private void altsatir(object sender, EventArgs e) { } private void Cancel_Click(object sender, EventArgs e) { textBox1.Clear(); islem = 0; ust = ""; alt = ""; } private void b2_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "2"; alt += "2"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "2"; alt += "2"; } } private void b3_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "3"; alt += "3"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "3"; alt += "3"; } } private void b4_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "4"; alt += "4"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "4"; alt += "4"; } } private void b5_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "5"; alt += "5"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "5"; alt += "5"; } } private void b6_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "6"; alt += "6"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "6"; alt += "6"; } } private void b7_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "7"; alt += "7"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "7"; alt += "7"; } } private void b8_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "8"; alt += "8"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "8"; alt += "8"; } } private void b9_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "9"; alt += "9"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "9"; alt += "9"; } } private void b0_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "0"; alt += "0"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "0"; alt += "0"; } } private void virgul_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + ","; alt += ","; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + ","; alt += ","; } } private void b1_Click(object sender, EventArgs e) { if (kontrol == 0) { if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "1"; alt += "1"; } else { kontrol = 0; alt = ""; if (ust.Length > 15) { sy = ust.Length - 15; } textBox1.Text = ust.Substring(sy) + Environment.NewLine + alt + "1"; alt += "1"; } } private void Topla_Click(object sender, EventArgs e) { kontrol++; islem += float.Parse(alt); if(ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; } else { string duzenle = ust + "+" + alt; if(duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "+" + alt; } } private void Cikar_Click(object sender, EventArgs e) { kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem -= float.Parse(alt); string duzenle = ust + "-" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "-" + alt; } } private void Carp_Click(object sender, EventArgs e) { kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem *= float.Parse(alt); string duzenle = ust + "x" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "x" + alt; } } private void sil_Click(object sender, EventArgs e) { if (alt.Length == 0) { //eğer boş ise silme işlemi hata verecektir. } else { textBox1.Text = ust + Environment.NewLine + alt.Substring(0, alt.Length - 1); alt = alt.Substring(0, alt.Length - 1); } } private void Form1_Load(object sender, EventArgs e) { } private void Bol_Click(object sender, EventArgs e) { kontrol++; if (ust == "") { textBox1.Text = alt + Environment.NewLine + alt; ust += alt; islem = float.Parse(alt); } else { islem /= float.Parse(alt); string duzenle = ust + "/" + alt; if (duzenle.Length >= 15) { sy = duzenle.Length - 15; } textBox1.Text = duzenle.Substring(sy) + Environment.NewLine + islem; ust += "/" + alt; } } } } |
Projenin Örneğini Buraya Tıklayarak İndirebilirsiniz.