示例#1
0
        public UpdateEmail()
        {
            RequestID = Guid.NewGuid();
            NextLabel = Guid.Empty;

            this.InitializeComponent();

            OperationTimer = new System.Timers.Timer
            {
                Interval  = OperationTimeInterval,
                AutoReset = false
            };
            OperationTimer.Elapsed += OperationTimer_Trigger;

            State = UpdateEmailState.Email;
            LoadGrid();
        }
示例#2
0
 private void PreButton_Click(object sender, RoutedEventArgs e)
 {
     State = UpdateEmailState.Email;
     LoadGrid();
 }