AnimatGuiCtrls.Forms.SplashForm.ShowModal C# (CSharp) Метод

ShowModal() публичный статический Метод

public static ShowModal ( Bitmap imageFile, Color col, string strText, System fontText, PointF TextPos, System TextColor ) : void
imageFile System.Drawing.Bitmap
col Color
strText string
fontText System
TextPos System.Drawing.PointF
TextColor System
Результат void
        public static void ShowModal(Bitmap imageFile, Color col, string strText, System.Drawing.Font fontText, PointF TextPos, System.Drawing.Color TextColor)
        {
            m_imageFile = imageFile;
            m_transColor = col;
            m_strText = strText;
            m_Font = fontText;
            m_TextPos = TextPos;
            m_TextColor = TextColor;

            MySplashThreadFunc();
        }