0

Telerik デスクトップ コントロールを使用してデスクトップ アプリケーションを作成します。私のメインフォームコードは次のとおりです。

 public partial class MainForm3 : Telerik.WinControls.UI.RadForm
       {
        private string ISadmin = string.Empty;
        private string Customer_ID = string.Empty;
        private string sLanguage_Code = "en-US";
        private string Contact_ID = string.Empty;
        public MainForm3(string Contact_IDa, string Customer_IDa, string ISadmina)
        {
            InitializeComponent();

            this.Contact_ID = Contact_IDa;
            this.Customer_ID = Customer_IDa;
            this.ISadmin = ISadmina;  
        }
        private void MainForm3_Load(object sender, EventArgs e)
                {
                    this.IsMdiContainer = true;
                    this.radDock1.AutoDetectMdiChildren = true;
                }
        private void radMenuItem1_Click(object sender, EventArgs e)
        {
            FormThree formthree= new FormThree ();
            formthree.MdiParent = this;
            formthree.Show();
        }

    }

文字列 Contact_IDa、文字列 Customer_IDa、文字列 ISadmina はログイン ページからのものです。

ログインページのコード:

if(login success){

//setup necessary values 



 System.Threading.Thread t = new System.Threading.Thread(new  System.Threading.ThreadStart(ThreadProc));
 t.Start();
 this.Close();

}

public void ThreadProc()
        {
            Application.Run(new MainForm3(Contact_ID, Customer_ID, IsAdmin));
        }

FormThree コードは次のとおりです。

public partial class FormThree : Telerik.WinControls.UI.RadForm
           {
        public FormThree ()
        {
            InitializeComponent(); 
            splitPanel1.AllowDrop = true;
            splitPanel1.DragEnter += splitPanel1_DragEnter;
            splitPanel1.DragDrop += splitPanel1_DragDrop;
        }
        private void splitPanel1_DragDrop(object sender, DragEventArgs e)
        {
            if (e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                string[] filePaths = (string[])(e.Data.GetData(DataFormats.FileDrop));

                foreach (string fileLoc in filePaths)
                {
                    // Code to read the contents of the text file
                    if (File.Exists(fileLoc))
                    {
                        using (TextReader tr = new StreamReader(fileLoc))
                        {
                            string Name = Path.GetFileName(fileLoc);
                            string extention = Path.GetExtension(fileLoc);
                            MessageBox.Show("Name:" + Name + " </br>Extention:" + extention);
                            //MessageBox.Show(tr.ReadToEnd());
                        }
                    }
                }
            }
        }

        private void splitPanel1_DragEnter(object sender, DragEventArgs e)
        {
            if (e.Data.GetDataPresent(DataFormats.FileDrop))
            {
                e.Effect = DragDropEffects.Copy;
            }
            else
            {
                e.Effect = DragDropEffects.None;
            }
        }

        private void FormThree_Load(object sender, EventArgs e)
        {
        }
    }

ここでの問題は、フォーム FormThree をロードするために「radMenuItem1」をクリックすると、「DragDrop の登録に失敗しました」と表示されることです。なぜ、どうすればこの問題を解決できますか.....

4

1 に答える 1

0

すべてのアプリケーションの開始時にアプリケーションを開始します。
Main メソッドで次のことを行います。

Application.Run(new MainForm3()); 

ここではコンストラクターにパラメーターはありません。次に、MainForm3 コンストラクター (InitializeComponent の前) で専用のモーダル フォームを開いてログインし、続行するために必要なログイン資格情報を取得します。

ログインに失敗した場合は、ユーザーに通知し、Application.Exit() を使用してアプリケーションを閉じることができます。ログインが成功した場合は、MainForm3 に必要な値を読み取ります。別のスレッドを開始する必要はありません

于 2012-04-07T13:11:41.280 に答える