Files
WinFormDiApp/WinFormDi/UserControls/ucCustomerValue.cs

31 lines
772 B
C#

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 WinFormDi.UserControls
{
public partial class ucCustomerValue : UserControl
{
public ucCustomerValue()
{
InitializeComponent();
}
private void btnShowMore_Click(object sender, EventArgs e)
{
}
public string Receiver { get => lblCustName.Text; set => lblCustName.Text = value; }
public string Number { get => lblNumberof.Text; set => lblNumberof.Text = value; }
public string Amount { get => lblAmount.Text; set => lblAmount.Text = value; }
}
}