1 /***************************************************************************
3 Copyright (c) Microsoft Corporation. All rights reserved.
4 This code is licensed under the Visual Studio SDK license terms.
5 THIS CODE IS PROVIDED *AS IS* WITHOUT WARRANTY OF
6 ANY KIND, EITHER EXPRESS OR IMPLIED, INCLUDING ANY
7 IMPLIED WARRANTIES OF FITNESS FOR A PARTICULAR
8 PURPOSE, MERCHANTABILITY, OR NON-INFRINGEMENT.
10 ***************************************************************************/
12 namespace Microsoft
.Samples
.VisualStudio
.SourceControlIntegration
.SccProvider
14 partial class DlgQueryEditCheckedInFile
17 /// Required designer variable.
19 private System
.ComponentModel
.IContainer components
= null;
22 /// Clean up any resources being used.
24 /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
25 protected override void Dispose(bool disposing
)
27 if (disposing
&& (components
!= null))
31 base.Dispose(disposing
);
34 #region Windows Form Designer generated code
37 /// Required method for Designer support - do not modify
38 /// the contents of this method with the code editor.
40 private void InitializeComponent()
42 this.msgText
= new System
.Windows
.Forms
.Label();
43 this.btnCheckout
= new System
.Windows
.Forms
.Button();
44 this.btnEdit
= new System
.Windows
.Forms
.Button();
45 this.btnCancel
= new System
.Windows
.Forms
.Button();
50 this.msgText
.Location
= new System
.Drawing
.Point(4, 13);
51 this.msgText
.Name
= "msgText";
52 this.msgText
.Size
= new System
.Drawing
.Size(517, 51);
53 this.msgText
.TabIndex
= 0;
54 this.msgText
.Text
= "The read only file {0} is under source control and checked in.What do you want to" +
59 this.btnCheckout
.Location
= new System
.Drawing
.Point(62, 67);
60 this.btnCheckout
.Name
= "btnCheckout";
61 this.btnCheckout
.Size
= new System
.Drawing
.Size(108, 23);
62 this.btnCheckout
.TabIndex
= 1;
63 this.btnCheckout
.Text
= "Checkout the file";
64 this.btnCheckout
.UseVisualStyleBackColor
= true;
65 this.btnCheckout
.Click
+= new System
.EventHandler(this.btnCheckout_Click
);
69 this.btnEdit
.Location
= new System
.Drawing
.Point(203, 67);
70 this.btnEdit
.Name
= "btnEdit";
71 this.btnEdit
.Size
= new System
.Drawing
.Size(132, 23);
72 this.btnEdit
.TabIndex
= 2;
73 this.btnEdit
.Text
= "Edit the file in memory";
74 this.btnEdit
.UseVisualStyleBackColor
= true;
75 this.btnEdit
.Click
+= new System
.EventHandler(this.btnEdit_Click
);
79 this.btnCancel
.Location
= new System
.Drawing
.Point(366, 67);
80 this.btnCancel
.Name
= "btnCancel";
81 this.btnCancel
.Size
= new System
.Drawing
.Size(95, 23);
82 this.btnCancel
.TabIndex
= 3;
83 this.btnCancel
.Text
= "Cancel the edit";
84 this.btnCancel
.UseVisualStyleBackColor
= true;
85 this.btnCancel
.Click
+= new System
.EventHandler(this.btnCancel_Click
);
87 // DlgQueryEditCheckedInFile
89 this.AutoScaleDimensions
= new System
.Drawing
.SizeF(6F
, 13F
);
90 this.AutoScaleMode
= System
.Windows
.Forms
.AutoScaleMode
.Font
;
91 this.ClientSize
= new System
.Drawing
.Size(523, 102);
92 this.Controls
.Add(this.btnCancel
);
93 this.Controls
.Add(this.btnEdit
);
94 this.Controls
.Add(this.btnCheckout
);
95 this.Controls
.Add(this.msgText
);
96 this.Name
= "DlgQueryEditCheckedInFile";
97 this.StartPosition
= System
.Windows
.Forms
.FormStartPosition
.CenterParent
;
98 this.Text
= "Microsoft Visual Studio";
99 this.ResumeLayout(false);
105 private System
.Windows
.Forms
.Label msgText
;
106 private System
.Windows
.Forms
.Button btnCheckout
;
107 private System
.Windows
.Forms
.Button btnEdit
;
108 private System
.Windows
.Forms
.Button btnCancel
;