ScreenToGif.Pages.Processing.Processing C# (CSharp) Method

Processing() public method

Starts a Processing page instance.
public Processing ( ) : System
return System
        public Processing()
        {
            //To localize this page too.
            if (CultureUtil.Lang.Length >= 2)
            {
                System.Threading.Thread.CurrentThread.CurrentUICulture = new System.Globalization.CultureInfo(CultureUtil.Lang);
            }

            InitializeComponent();

            #region Localize Labels

            lblProcessing.Text = Resources.Label_Processing;
            linkOpenFile.Text = Resources.Label_OpenGif; 
            linkClose.Text = Resources.Label_Close;

            #endregion
        }