Ejemplo n.º 1
0
        private void DisplayArguments()
        {
            try
            {
                uint argumentCount = ActiveFrame.GetArgumentCount();
                List <NuGenBaseValueRefresher> arguments = new List <NuGenBaseValueRefresher>(Convert.ToInt32(argumentCount));

                for (uint index = 0; index < argumentCount; index++)
                {
                    NuGenArgumentValueRefresher refresher = new NuGenArgumentValueRefresher(string.Concat("A_", index), ActiveFrameRefresher, index);

                    arguments.Add(refresher);
                }

                ShowObjects(arguments);
            }
            catch (Exception exception)
            {
                NuGenUIHandler.Instance.ShowException(exception);
            }
        }
Ejemplo n.º 2
0
		private void DisplayArguments()
		{
			try
			{
				uint argumentCount = ActiveFrame.GetArgumentCount();
				List<NuGenBaseValueRefresher> arguments = new List<NuGenBaseValueRefresher>(Convert.ToInt32(argumentCount));

				for (uint index = 0; index < argumentCount; index++)
				{
					NuGenArgumentValueRefresher refresher = new NuGenArgumentValueRefresher(string.Concat("A_", index), ActiveFrameRefresher, index);

					arguments.Add(refresher);
				}

				ShowObjects(arguments);
			}
			catch (Exception exception)
			{
				NuGenUIHandler.Instance.ShowException(exception);
			}
		}