Beispiel #1
0
        public static void ChangeIntensity(IOperand x, bool spawn = true)
        {
            if (x == null)
            {
                return;
            }
            FormIntensity fi = new FormIntensity(x.GetBitmap(), x, spawn);

            fi.Show();
            return;
        }
Beispiel #2
0
        public static void ChangeIntensity()
        {
            IOperand x = ExecutionStack.X;

            if (x == null)
            {
                return;
            }
            FormIntensity fi = new FormIntensity(x.GetBitmap());

            fi.Show();
            return;
        }