Skip to content

This is Windows Form Application (.net framework 4.6, C# 6.0).

Notifications You must be signed in to change notification settings

SatSargsyan/Forms

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 

Repository files navigation

Application for Beeline

There were using Forms, Events

For example

using System.Windows.Forms;

namespace Beeline_proj
{
    public partial class Button1 : Form
    {
        public Button1()
        {
            InitializeComponent();
        }

        private void Button1_Load(object sender, EventArgs e)
        {
            
        }

        private void button2_Click(object sender, EventArgs e)
        {
            ProcessStartInfo sInfo = new ProcessStartInfo("https://beeline.am/am/Catalog/Packages/Mobile-Packages/TP-Smart-/Prepaid-Smart/Smart-1500/p/ALL_1_P#");
            Process.Start(sInfo);
        }

        private void button3_Click(object sender, EventArgs e)
        {
            Close();
            Form1 f = new Form1();
            f.Show();

                    }
    }
}

For running the program.

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace Beeline_proj
{
    class Program
    {
        [STAThread]
        static void Main(string[] args)
        {
                   Application.Run(new Form1());
        }
    }
}

form1

About

This is Windows Form Application (.net framework 4.6, C# 6.0).

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages