/*NL oryginal dll content*/
 public void txtMultiplier_Enter(object sender, OnEnterEventArgs e)
 {
     if (!this.m_bReadOnlyMultiplier)
     {
         return;
     }
     this.m_Form.txtMultiplier.ReadOnly = true;
 }
Example #2
0
        private void DialogEnter_mEnterEvent(object sender, OnEnterEventArgs e)
        {
            string p  = e.ParkinglotID.ToString();
            string vt = e.VehicleTypeID.ToString();
            string c  = e.ClientID.ToString();

            List <int> navData = new List <int>();

            navData.Add(e.ParkinglotID);
            navData.Add(e.VehicleTypeID);
            navData.Add(e.ClientID);

            Console.WriteLine("** Ingreso a: " + p + " " + vt + " " + c + " **");
            Managment.ActivityManager.TakeMeTo(this, typeof(NavigationActivity), true, navData);
        }