//Threading for speacific printer otherwise it will open default Faxman printer
Task.Factory.StartNew(() =>
{
Thread.Sleep(5000);
// Killing Process of default printer
Process[] processes = Process.GetProcessesByName("FaxManFMFFileCreator");
foreach (var process in processes)
{
process.Kill();
}
});
Entity/Class: public class FeesDetails : INotifyPropertyChanged { public int Id { get; set; } public string FeesName { get; set;} public string FeesDetailsName { get; set; } public int? PaidAmount { get; set; } public event PropertyChangedEventHandler PropertyChanged; private void NotifyPropertyChanged(System.String info) { if (PropertyChanged != null) { PropertyChanged(this, new PropertyChangedEventArgs(info)); } } public int feesAmount { get; set; } public int FeesAmount { get { return this.feesAmount; } set { if (value != this.feesAmount) { this.feesAmount = value; NotifyPropertyChanged("FeesAmount"); } } } } XAML: <DataGrid AutoGenerateColumns="False" Height="21...
Comments
Post a Comment