가격 체크 기능 추가

This commit is contained in:
2016-12-30 12:33:56 +09:00
parent 021d70d758
commit f9057cea61
3 changed files with 267 additions and 37 deletions

77
NewsForm.Designer.cs generated
View File

@@ -29,10 +29,15 @@
private void InitializeComponent()
{
this.lvList = new System.Windows.Forms.ListView();
this.chId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chResT = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chReference = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chResponseT = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chPriceS = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chPriceLow = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chPriceHigh = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.chLink = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.wbView = new System.Windows.Forms.WebBrowser();
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
@@ -44,7 +49,7 @@
this.splitContainer2 = new System.Windows.Forms.SplitContainer();
this.tbLog = new System.Windows.Forms.RichTextBox();
this.chBuy = new System.Windows.Forms.CheckBox();
this.chResT = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
this.cbPriceCheck = new System.Windows.Forms.CheckBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
@@ -58,11 +63,15 @@
// lvList
//
this.lvList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
this.chId,
this.chTime,
this.chResT,
this.chReference,
this.chTitle,
this.chResponseT,
this.chPriceS,
this.chPriceLow,
this.chPriceHigh,
this.chLink});
this.lvList.Dock = System.Windows.Forms.DockStyle.Fill;
this.lvList.FullRowSelect = true;
@@ -71,32 +80,57 @@
this.lvList.Location = new System.Drawing.Point(0, 0);
this.lvList.MultiSelect = false;
this.lvList.Name = "lvList";
this.lvList.Size = new System.Drawing.Size(862, 603);
this.lvList.Size = new System.Drawing.Size(1100, 603);
this.lvList.TabIndex = 0;
this.lvList.UseCompatibleStateImageBehavior = false;
this.lvList.View = System.Windows.Forms.View.Details;
this.lvList.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.lvList_ColumnClick);
this.lvList.SelectedIndexChanged += new System.EventHandler(this.lvList_SelectedIndexChanged);
//
// chId
//
this.chId.Text = "ID";
this.chId.Width = 29;
//
// chTime
//
this.chTime.Text = "시간";
//
// chTitle
// chResT
//
this.chTitle.Text = "제목";
this.chTitle.Width = 366;
this.chResT.Text = "받은 시간";
this.chResT.Width = 66;
//
// chReference
//
this.chReference.Text = "출처";
this.chReference.Width = 72;
//
// chTitle
//
this.chTitle.Text = "제목";
this.chTitle.Width = 366;
//
// chResponseT
//
this.chResponseT.Text = "요청 시간";
this.chResponseT.Width = 69;
//
// chPriceS
//
this.chPriceS.Text = "시가";
this.chPriceS.Width = 66;
//
// chPriceLow
//
this.chPriceLow.Text = "최저가";
this.chPriceLow.Width = 75;
//
// chPriceHigh
//
this.chPriceHigh.Text = "최고가";
this.chPriceHigh.Width = 73;
//
// chLink
//
this.chLink.Text = "링크";
@@ -108,7 +142,7 @@
this.wbView.Location = new System.Drawing.Point(0, 0);
this.wbView.MinimumSize = new System.Drawing.Size(20, 20);
this.wbView.Name = "wbView";
this.wbView.Size = new System.Drawing.Size(862, 27);
this.wbView.Size = new System.Drawing.Size(1100, 27);
this.wbView.TabIndex = 1;
//
// splitContainer1
@@ -125,7 +159,7 @@
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.wbView);
this.splitContainer1.Size = new System.Drawing.Size(862, 634);
this.splitContainer1.Size = new System.Drawing.Size(1100, 634);
this.splitContainer1.SplitterDistance = 603;
this.splitContainer1.TabIndex = 2;
//
@@ -175,7 +209,7 @@
// btnConfig
//
this.btnConfig.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
this.btnConfig.Location = new System.Drawing.Point(788, 1);
this.btnConfig.Location = new System.Drawing.Point(1026, 1);
this.btnConfig.Name = "btnConfig";
this.btnConfig.Size = new System.Drawing.Size(75, 23);
this.btnConfig.TabIndex = 7;
@@ -199,7 +233,7 @@
// splitContainer2.Panel2
//
this.splitContainer2.Panel2.Controls.Add(this.tbLog);
this.splitContainer2.Size = new System.Drawing.Size(862, 803);
this.splitContainer2.Size = new System.Drawing.Size(1100, 803);
this.splitContainer2.SplitterDistance = 634;
this.splitContainer2.TabIndex = 8;
//
@@ -211,7 +245,7 @@
this.tbLog.Name = "tbLog";
this.tbLog.ReadOnly = true;
this.tbLog.ScrollBars = System.Windows.Forms.RichTextBoxScrollBars.Vertical;
this.tbLog.Size = new System.Drawing.Size(862, 165);
this.tbLog.Size = new System.Drawing.Size(1100, 165);
this.tbLog.TabIndex = 0;
this.tbLog.Text = "";
//
@@ -219,7 +253,7 @@
//
this.chBuy.Appearance = System.Windows.Forms.Appearance.Button;
this.chBuy.AutoSize = true;
this.chBuy.Location = new System.Drawing.Point(274, 1);
this.chBuy.Location = new System.Drawing.Point(356, 1);
this.chBuy.Name = "chBuy";
this.chBuy.Size = new System.Drawing.Size(39, 22);
this.chBuy.TabIndex = 9;
@@ -227,16 +261,22 @@
this.chBuy.UseVisualStyleBackColor = true;
this.chBuy.CheckedChanged += new System.EventHandler(this.chBuy_CheckedChanged);
//
// chResT
// cbPriceCheck
//
this.chResT.Text = "받은 시간";
this.chResT.Width = 66;
this.cbPriceCheck.AutoSize = true;
this.cbPriceCheck.Location = new System.Drawing.Point(274, 4);
this.cbPriceCheck.Name = "cbPriceCheck";
this.cbPriceCheck.Size = new System.Drawing.Size(76, 16);
this.cbPriceCheck.TabIndex = 10;
this.cbPriceCheck.Text = "가격 체크";
this.cbPriceCheck.UseVisualStyleBackColor = true;
//
// NewsForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(864, 829);
this.ClientSize = new System.Drawing.Size(1102, 829);
this.Controls.Add(this.cbPriceCheck);
this.Controls.Add(this.chBuy);
this.Controls.Add(this.splitContainer2);
this.Controls.Add(this.btnConfig);
@@ -279,6 +319,11 @@
private System.Windows.Forms.CheckBox chBuy;
private System.Windows.Forms.ColumnHeader chResponseT;
private System.Windows.Forms.ColumnHeader chResT;
private System.Windows.Forms.ColumnHeader chId;
private System.Windows.Forms.ColumnHeader chPriceS;
private System.Windows.Forms.ColumnHeader chPriceLow;
private System.Windows.Forms.ColumnHeader chPriceHigh;
private System.Windows.Forms.CheckBox cbPriceCheck;
}
}