Advertisement
DrAungWinHtut

Function Basic 2 in CS

Mar 18th, 2022
211
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 3.14 KB | None | 0 0
  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 Function_Test2
  12. {
  13.     public partial class frmFunTest2 : Form
  14.     {
  15.         public frmFunTest2()
  16.         {
  17.             InitializeComponent();
  18.         }
  19.  
  20.         private void btnHello_Click(object sender, EventArgs e)
  21.         {
  22.            string sResult = funSayHello(txtUname .Text );
  23.             this.Text = sResult;
  24.         }
  25.  
  26.         public string funSayHello(string sName)
  27.         {
  28.            return ("Hello " + sName );
  29.         }
  30.  
  31.         public float funSquare(float fN)
  32.         {
  33.             float fSquare = 0f;
  34.             fSquare = fN * fN;
  35.             return fSquare;
  36.         }
  37.  
  38.         // A = 3.14 * R * R;
  39.         public float funAreaCircle(float fR)
  40.         {
  41.             float fA = 3.14f * fR * fR;
  42.             return fA;
  43.         }
  44.  
  45.         // At = 0.5f * fB * fH;
  46.         public float funAreaTriange(float fB, float fH)
  47.         {
  48.             float fAT = 0.5f * fB * fH;
  49.             return fAT;
  50.         }
  51.  
  52.         // fCm = 100 * fMeter;
  53.         public float funMeter2Cm(float fMeter)
  54.         {
  55.             float fCm = 100f * fMeter;
  56.             return fCm;
  57.         }
  58.         public float funMiles2Yards(float fMiles)
  59.         {
  60.             float fYards = 1760f * fMiles ;
  61.             return fYards;
  62.         }
  63.  
  64.         public float funUnitConverter(float fUnit1, float K)
  65.         {
  66.             return K * fUnit1;
  67.         }
  68.  
  69.         private void btnSquare_Click(object sender, EventArgs e)
  70.         {
  71.             float fN = float.Parse(txtN.Text);
  72.             float fSquare = funSquare(fN);
  73.             txtSquare.Text = fSquare.ToString();
  74.         }
  75.  
  76.         private void btnCalAreaCircle_Click(object sender, EventArgs e)
  77.         {
  78.             float fR = float.Parse(txtRadius.Text);
  79.             float fAC  = funAreaCircle(fR);
  80.             txtAreaCircle .Text = fAC .ToString ();
  81.         }
  82.  
  83.         private void btnCalAreaTriange_Click(object sender, EventArgs e)
  84.         {
  85.             float fB = float.Parse(txtB.Text);
  86.             float fH = float.Parse(txtH.Text);
  87.             float fAT = funAreaTriange (fB, fH);
  88.             txtAT .Text = fAT .ToString ();
  89.  
  90.         }
  91.  
  92.         private void btnCalMeter2Cm_Click(object sender, EventArgs e)
  93.         {
  94.             float fM = float.Parse(txtMeter.Text);
  95.             float fCm = funMeter2Cm (fM);
  96.             txtCm.Text = fCm .ToString ();
  97.         }
  98.  
  99.         private void btnCalMiles2Yards_Click(object sender, EventArgs e)
  100.         {
  101.             float fMiles =float.Parse (txtMiles.Text);
  102.             float fYards = funMiles2Yards (fMiles);
  103.             txtYards  .Text = fYards .ToString ();
  104.         }
  105.  
  106.         private void btnUnit1ToUnit2_Click(object sender, EventArgs e)
  107.         {
  108.             float fUnit1 = float.Parse(txtUnit1.Text);
  109.             float fK = float.Parse(txtK.Text);
  110.             float fUnit2 = funUnitConverter (fUnit1 ,fK);
  111.             txtUnit2.Text = fUnit2 .ToString ();
  112.         }
  113.     }
  114. }
  115.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement