Show Provider.cs syntax highlighted
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
namespace DemoClientApp
{
public partial class Provider : Form
{
public String providerName;
public bool EMR = true;
public Provider()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
providerName = providerList.Text;
EMR = EMRDemo.Checked;
this.Close();
}
}
}
See more files for this project here