Hi Team
I have this class name in xml, UCFinishedProduct.xml(UI), now when view source code its in c# i believe this will be my back end. Question now how will i integrate these logic together so my code works? The logic is if value for both 'topseal and bottomseal' are empty during capturing, it must trigger these together so it prompt dialog message to a user, until these two captured correctly and focus be exit after.
namespace Feedmill_Weighbridge.Presentation
{
///
/// Interaction logic for UCFinishedProduct.xaml
///
public partial class UCFinishedProduct : UserControl, IFinishedProductView, INotifyPropertyChanged, IDataErrorInfo
{
public FinishedProductPresenter presenter;
private string _topSeal;
private string _bottomSeal;
List objBinList;
public event PropertyChangedEventHandler PropertyChanged;
protected virtual void RaisePropertyChanged(string propertyName)
{
PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
}
private EmptyRule _validates = new EmptyRule();
Jignesh KumarPosted Apr 27, 2024, 6:07 AM
Hello,
Use below,