今天早上八点我们进行了站立会议
此次站立会议我们开了30分钟
参加会议的人员: 黄睿麒 侯熙磊
会议内容:今天我们讨论具体添加相关网站的具体控件,还有新建一个宠物信息界面需要放入哪些内容
黄睿麒:
我今天运行了软件修改了无法后台运行的bug,修改了回收站界面的信息,将提示信息进行了修改,明天继续进行完善
private string CusterFormControl(string Caption, string title, string text1, string type) { CCSkinMain MessageboxForm = new CCSkinMain(); MessageboxForm.MinimizeBox = false; MessageboxForm.MaximizeBox = false; MessageboxForm.ControlBox = true; MessageboxForm.Location = new Point(100, 200); MessageboxForm.Width = 300; MessageboxForm.Height = 150; MessageboxForm.BackColor = ColorTranslator.FromHtml(backcolor); // MessageboxForm.BackgroundImage = Image.FromFile(filepath); MessageboxForm.Text = Caption; MessageboxForm.ControlBox = false; MessageboxForm.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent; MessageboxForm.ShowDrawIcon = false; SkinLabel lbtitle = new SkinLabel(); lbtitle.Text = title; lbtitle.Left = 20; lbtitle.Top = 20; lbtitle.Parent = MessageboxForm; lbtitle.Size = new Size(120, 21); lbtitle.AutoSize = true; SkinLabel tbtext = new SkinLabel(); tbtext.Left = 15; tbtext.Top = 70; tbtext.Width = 210; tbtext.Height = 280; tbtext.Parent = MessageboxForm; tbtext.Text = text1; tbtext.AutoSize = true; Button btnok = new Button(); btnok.Left = 110; btnok.Top = 120; 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; if (type == "yes") { Button btncancel = new Button(); btncancel.Left = 200; btncancel.Top = 120; btncancel.Parent = MessageboxForm; btncancel.Text = "取消"; btncancel.FlatStyle = FlatStyle.Flat; btncancel.BackColor = Color.Transparent; btncancel.DialogResult = DialogResult.Cancel; btncancel.FlatAppearance.BorderSize = 1; SkinCheckBox ziqi = new SkinCheckBox(); ziqi.Left = 0; ziqi.Top = 120; ziqi.Parent = MessageboxForm; ziqi.Text = "是否下次开机自启"; ziqi.FlatStyle = FlatStyle.Flat; ziqi.BackColor = Color.Transparent; ziqi.CheckedChanged += new EventHandler(this.ziqi_CheckedChanged); } try { if (MessageboxForm.ShowDialog() == DialogResult.OK) { notifyIcon1.Visible = true; if (type == "yes") { this.Hide(); } return tbtext.Text.Trim(); } else { this.Close(); return null; } } catch (Exception ex) { MessageBox.Show(ex.Message); return null; } finally { MessageboxForm.Dispose(); } }
侯熙磊:
今天我将对软件进行宠物信息的添加。
清屏功能
private void button5_Click(object sender, EventArgs e)
{
textBox2.Text = "";
textBox3.Text = "";
textBox4.Text = "";
textBox5.Text = "";
textBox6.Text = "";
textBox8.Text = "";
}
今天我将继续对宠物信息部分进行修改。
上次输入按钮
private void button6_Click(object sender, EventArgs e)
{
textBox9.Text = Settings.Default.ip;
textBox2.Text = Settings.Default.a;
textBox3.Text = Settings.Default.b;
textBox4.Text = Settings.Default.c;
textBox5.Text = Settings.Default.d;
textBox6.Text = Settings.Default.e;
textBox7.Text = Settings.Default.f;
textBox8.Text = Settings.Default.g;
}
明天我将继续对宠物信息部分进行修改。