找传奇、传世资源到传世资源站!

自己写的桌面书签小工具

8.5玩家评分(1人评分)
下载后可评
介绍 评论 失效链接反馈

桌面书签小工具,支持后台运行,界面美化以及多便签处理
自己写的桌面书签小工具 桌面应用界面/GUI-第1张自己写的桌面书签小工具 桌面应用界面/GUI-第2张自己写的桌面书签小工具 桌面应用界面/GUI-第3张

            string str1 ="";
            using (StreamReader str = new StreamReader("回忆站.txt", System.Text.Encoding.UTF8))
            {
                string line;
                while ((line = str.ReadLine()) != null)
                {
                    str1 = str1 line "\r\n";

                }
                CCSkinMain MessageboxForm = new CCSkinMain();
                MessageboxForm.MinimizeBox = false;
                MessageboxForm.MaximizeBox = false;
                MessageboxForm.ControlBox = true;
                MessageboxForm.Location = new Point(100, 200);
                MessageboxForm.Width = 400;
                MessageboxForm.Height = 200;
                MessageboxForm.BackColor = ColorTranslator.FromHtml(backcolor);
                // MessageboxForm.BackgroundImage = Image.FromFile(filepath);
                MessageboxForm.Text ="回忆站";
                MessageboxForm.ControlBox = false;
                MessageboxForm.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
                MessageboxForm.ShowDrawIcon = false;

                RichTextBox rt = new RichTextBox();
                rt.Text = str1;
                rt.Left = 20;
                rt.Top = 30;
                rt.Parent = MessageboxForm;
                rt.Size = new Size(350, 100);
                rt.BackColor = BackColor = ColorTranslator.FromHtml(backcolor);
                rt.BorderStyle = BorderStyle.None;
               

                Button btnok = new Button();
                btnok.Left = 110;
                btnok.Top = 160;
                btnok.Parent = MessageboxForm;
                btnok.Text = "确定";
                MessageboxForm.AcceptButton = btnok;
                btnok.DialogResult = DialogResult.OK;
                btnok.FlatStyle = FlatStyle.Flat;
                //btnok.ForeColor = Color();
                btnok.BackColor = Color.Transparent;
                btnok.FlatAppearance.BorderSize = 1;

              
                try
                {
                    if (MessageboxForm.ShowDialog() == DialogResult.OK)
                    {

                        MessageboxForm.Close();

                    }
                   
                }
                catch (Exception ex)
                {
                    MessageBox.Show(ex.Message);
                 
                }
            
                str.Close();

            }

评论

发表评论必须先登陆, 您可以 登陆 或者 注册新账号 !


在线咨询: 问题反馈
客服QQ:174666394

有问题请留言,看到后及时答复