Add Document Properties dialog for advanced options
This commit is contained in:
parent
4de81f4cf0
commit
f8b0e18977
@ -0,0 +1,301 @@
|
||||
namespace UniversalEditor.UserInterface.WindowsForms.Dialogs
|
||||
{
|
||||
partial class DocumentPropertiesDialog
|
||||
{
|
||||
/// <summary>
|
||||
/// Required designer variable.
|
||||
/// </summary>
|
||||
private System.ComponentModel.IContainer components = null;
|
||||
|
||||
/// <summary>
|
||||
/// Clean up any resources being used.
|
||||
/// </summary>
|
||||
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
|
||||
protected override void Dispose(bool disposing)
|
||||
{
|
||||
if (disposing && (components != null))
|
||||
{
|
||||
components.Dispose();
|
||||
}
|
||||
base.Dispose(disposing);
|
||||
}
|
||||
|
||||
#region Windows Form Designer generated code
|
||||
|
||||
/// <summary>
|
||||
/// Required method for Designer support - do not modify
|
||||
/// the contents of this method with the code editor.
|
||||
/// </summary>
|
||||
private void InitializeComponent()
|
||||
{
|
||||
this.components = new System.ComponentModel.Container();
|
||||
this.txtObjectModel = new System.Windows.Forms.TextBox();
|
||||
this.cmdObjectModel = new System.Windows.Forms.Button();
|
||||
this.txtDataFormat = new System.Windows.Forms.TextBox();
|
||||
this.cmdDataFormat = new System.Windows.Forms.Button();
|
||||
this.txtAccessor = new System.Windows.Forms.TextBox();
|
||||
this.cmdAccessor = new System.Windows.Forms.Button();
|
||||
this.cmdCancel = new System.Windows.Forms.Button();
|
||||
this.cmdOK = new System.Windows.Forms.Button();
|
||||
this.fraDataFormatOptions = new System.Windows.Forms.GroupBox();
|
||||
this.mnuAccessor = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.localfileToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.fTPServerToolStripMenuItem = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.hTTPServerToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.fTPServerToolStripMenuItem1 = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuObjectModel = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.mnuObjectModelSep1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.mnuObjectModelSelect = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuObjectModelClear = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuDataFormat = new System.Windows.Forms.ContextMenuStrip(this.components);
|
||||
this.mnuDataFormatSep1 = new System.Windows.Forms.ToolStripSeparator();
|
||||
this.mnuDataFormatSelect = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuDataFormatClear = new System.Windows.Forms.ToolStripMenuItem();
|
||||
this.mnuAccessor.SuspendLayout();
|
||||
this.mnuObjectModel.SuspendLayout();
|
||||
this.mnuDataFormat.SuspendLayout();
|
||||
this.SuspendLayout();
|
||||
//
|
||||
// txtObjectModel
|
||||
//
|
||||
this.txtObjectModel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.txtObjectModel.Location = new System.Drawing.Point(127, 14);
|
||||
this.txtObjectModel.Name = "txtObjectModel";
|
||||
this.txtObjectModel.ReadOnly = true;
|
||||
this.txtObjectModel.Size = new System.Drawing.Size(218, 20);
|
||||
this.txtObjectModel.TabIndex = 1;
|
||||
//
|
||||
// cmdObjectModel
|
||||
//
|
||||
this.cmdObjectModel.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.cmdObjectModel.Location = new System.Drawing.Point(12, 12);
|
||||
this.cmdObjectModel.Name = "cmdObjectModel";
|
||||
this.cmdObjectModel.Size = new System.Drawing.Size(109, 23);
|
||||
this.cmdObjectModel.TabIndex = 0;
|
||||
this.cmdObjectModel.Text = "Object &model:";
|
||||
this.cmdObjectModel.UseVisualStyleBackColor = true;
|
||||
this.cmdObjectModel.Click += new System.EventHandler(this.cmdObjectModel_Click);
|
||||
//
|
||||
// txtDataFormat
|
||||
//
|
||||
this.txtDataFormat.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.txtDataFormat.Location = new System.Drawing.Point(127, 43);
|
||||
this.txtDataFormat.Name = "txtDataFormat";
|
||||
this.txtDataFormat.ReadOnly = true;
|
||||
this.txtDataFormat.Size = new System.Drawing.Size(218, 20);
|
||||
this.txtDataFormat.TabIndex = 3;
|
||||
//
|
||||
// cmdDataFormat
|
||||
//
|
||||
this.cmdDataFormat.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.cmdDataFormat.Location = new System.Drawing.Point(12, 41);
|
||||
this.cmdDataFormat.Name = "cmdDataFormat";
|
||||
this.cmdDataFormat.Size = new System.Drawing.Size(109, 23);
|
||||
this.cmdDataFormat.TabIndex = 2;
|
||||
this.cmdDataFormat.Text = "Data &format:";
|
||||
this.cmdDataFormat.UseVisualStyleBackColor = true;
|
||||
this.cmdDataFormat.Click += new System.EventHandler(this.cmdDataFormat_Click);
|
||||
//
|
||||
// txtAccessor
|
||||
//
|
||||
this.txtAccessor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.txtAccessor.Location = new System.Drawing.Point(127, 72);
|
||||
this.txtAccessor.Name = "txtAccessor";
|
||||
this.txtAccessor.ReadOnly = true;
|
||||
this.txtAccessor.Size = new System.Drawing.Size(218, 20);
|
||||
this.txtAccessor.TabIndex = 5;
|
||||
//
|
||||
// cmdAccessor
|
||||
//
|
||||
this.cmdAccessor.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.cmdAccessor.Location = new System.Drawing.Point(12, 70);
|
||||
this.cmdAccessor.Name = "cmdAccessor";
|
||||
this.cmdAccessor.Size = new System.Drawing.Size(109, 23);
|
||||
this.cmdAccessor.TabIndex = 4;
|
||||
this.cmdAccessor.Text = "&Accessor:";
|
||||
this.cmdAccessor.UseVisualStyleBackColor = true;
|
||||
this.cmdAccessor.Click += new System.EventHandler(this.cmdAccessor_Click);
|
||||
//
|
||||
// cmdCancel
|
||||
//
|
||||
this.cmdCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.cmdCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.cmdCancel.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.cmdCancel.Location = new System.Drawing.Point(270, 191);
|
||||
this.cmdCancel.Name = "cmdCancel";
|
||||
this.cmdCancel.Size = new System.Drawing.Size(75, 23);
|
||||
this.cmdCancel.TabIndex = 8;
|
||||
this.cmdCancel.Text = "Cancel";
|
||||
this.cmdCancel.UseVisualStyleBackColor = true;
|
||||
this.cmdCancel.Click += new System.EventHandler(this.cmdCancel_Click);
|
||||
//
|
||||
// cmdOK
|
||||
//
|
||||
this.cmdOK.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.cmdOK.Enabled = false;
|
||||
this.cmdOK.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.cmdOK.Location = new System.Drawing.Point(189, 191);
|
||||
this.cmdOK.Name = "cmdOK";
|
||||
this.cmdOK.Size = new System.Drawing.Size(75, 23);
|
||||
this.cmdOK.TabIndex = 7;
|
||||
this.cmdOK.Text = "OK";
|
||||
this.cmdOK.UseVisualStyleBackColor = true;
|
||||
this.cmdOK.Click += new System.EventHandler(this.cmdOK_Click);
|
||||
//
|
||||
// fraDataFormatOptions
|
||||
//
|
||||
this.fraDataFormatOptions.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
||||
| System.Windows.Forms.AnchorStyles.Left)
|
||||
| System.Windows.Forms.AnchorStyles.Right)));
|
||||
this.fraDataFormatOptions.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
||||
this.fraDataFormatOptions.Location = new System.Drawing.Point(12, 99);
|
||||
this.fraDataFormatOptions.Name = "fraDataFormatOptions";
|
||||
this.fraDataFormatOptions.Size = new System.Drawing.Size(333, 86);
|
||||
this.fraDataFormatOptions.TabIndex = 6;
|
||||
this.fraDataFormatOptions.TabStop = false;
|
||||
this.fraDataFormatOptions.Text = "Data format options";
|
||||
//
|
||||
// mnuAccessor
|
||||
//
|
||||
this.mnuAccessor.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.localfileToolStripMenuItem,
|
||||
this.fTPServerToolStripMenuItem,
|
||||
this.hTTPServerToolStripMenuItem,
|
||||
this.fTPServerToolStripMenuItem1});
|
||||
this.mnuAccessor.Name = "mnuAccessor";
|
||||
this.mnuAccessor.Size = new System.Drawing.Size(135, 76);
|
||||
//
|
||||
// localfileToolStripMenuItem
|
||||
//
|
||||
this.localfileToolStripMenuItem.Name = "localfileToolStripMenuItem";
|
||||
this.localfileToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
|
||||
this.localfileToolStripMenuItem.Text = "&Local File";
|
||||
//
|
||||
// fTPServerToolStripMenuItem
|
||||
//
|
||||
this.fTPServerToolStripMenuItem.Name = "fTPServerToolStripMenuItem";
|
||||
this.fTPServerToolStripMenuItem.Size = new System.Drawing.Size(131, 6);
|
||||
//
|
||||
// hTTPServerToolStripMenuItem
|
||||
//
|
||||
this.hTTPServerToolStripMenuItem.Name = "hTTPServerToolStripMenuItem";
|
||||
this.hTTPServerToolStripMenuItem.Size = new System.Drawing.Size(134, 22);
|
||||
this.hTTPServerToolStripMenuItem.Text = "&HTTP Server";
|
||||
//
|
||||
// fTPServerToolStripMenuItem1
|
||||
//
|
||||
this.fTPServerToolStripMenuItem1.Name = "fTPServerToolStripMenuItem1";
|
||||
this.fTPServerToolStripMenuItem1.Size = new System.Drawing.Size(134, 22);
|
||||
this.fTPServerToolStripMenuItem1.Text = "&FTP Server";
|
||||
//
|
||||
// mnuObjectModel
|
||||
//
|
||||
this.mnuObjectModel.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.mnuObjectModelSep1,
|
||||
this.mnuObjectModelSelect,
|
||||
this.mnuObjectModelClear});
|
||||
this.mnuObjectModel.Name = "mnuObjectModel";
|
||||
this.mnuObjectModel.Size = new System.Drawing.Size(148, 54);
|
||||
//
|
||||
// mnuObjectModelSep1
|
||||
//
|
||||
this.mnuObjectModelSep1.Name = "mnuObjectModelSep1";
|
||||
this.mnuObjectModelSep1.Size = new System.Drawing.Size(144, 6);
|
||||
//
|
||||
// mnuObjectModelSelect
|
||||
//
|
||||
this.mnuObjectModelSelect.Name = "mnuObjectModelSelect";
|
||||
this.mnuObjectModelSelect.Size = new System.Drawing.Size(147, 22);
|
||||
this.mnuObjectModelSelect.Text = "&Select from List";
|
||||
this.mnuObjectModelSelect.Click += new System.EventHandler(this.mnuObjectModelSelect_Click);
|
||||
//
|
||||
// mnuObjectModelClear
|
||||
//
|
||||
this.mnuObjectModelClear.Name = "mnuObjectModelClear";
|
||||
this.mnuObjectModelClear.Size = new System.Drawing.Size(147, 22);
|
||||
this.mnuObjectModelClear.Text = "&Clear Selection";
|
||||
this.mnuObjectModelClear.Click += new System.EventHandler(this.mnuObjectModelClear_Click);
|
||||
//
|
||||
// mnuDataFormat
|
||||
//
|
||||
this.mnuDataFormat.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
||||
this.mnuDataFormatSep1,
|
||||
this.mnuDataFormatSelect,
|
||||
this.mnuDataFormatClear});
|
||||
this.mnuDataFormat.Name = "mnuDataFormat";
|
||||
this.mnuDataFormat.Size = new System.Drawing.Size(153, 76);
|
||||
//
|
||||
// mnuDataFormatSep1
|
||||
//
|
||||
this.mnuDataFormatSep1.Name = "mnuDataFormatSep1";
|
||||
this.mnuDataFormatSep1.Size = new System.Drawing.Size(149, 6);
|
||||
//
|
||||
// mnuDataFormatSelect
|
||||
//
|
||||
this.mnuDataFormatSelect.Name = "mnuDataFormatSelect";
|
||||
this.mnuDataFormatSelect.Size = new System.Drawing.Size(152, 22);
|
||||
this.mnuDataFormatSelect.Text = "&Select from List";
|
||||
//
|
||||
// mnuDataFormatClear
|
||||
//
|
||||
this.mnuDataFormatClear.Name = "mnuDataFormatClear";
|
||||
this.mnuDataFormatClear.Size = new System.Drawing.Size(152, 22);
|
||||
this.mnuDataFormatClear.Text = "&Clear Selection";
|
||||
//
|
||||
// DocumentPropertiesDialog
|
||||
//
|
||||
this.AcceptButton = this.cmdOK;
|
||||
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
||||
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
||||
this.CancelButton = this.cmdCancel;
|
||||
this.ClientSize = new System.Drawing.Size(357, 226);
|
||||
this.Controls.Add(this.fraDataFormatOptions);
|
||||
this.Controls.Add(this.cmdOK);
|
||||
this.Controls.Add(this.cmdCancel);
|
||||
this.Controls.Add(this.cmdAccessor);
|
||||
this.Controls.Add(this.txtAccessor);
|
||||
this.Controls.Add(this.cmdDataFormat);
|
||||
this.Controls.Add(this.txtDataFormat);
|
||||
this.Controls.Add(this.cmdObjectModel);
|
||||
this.Controls.Add(this.txtObjectModel);
|
||||
this.Name = "DocumentPropertiesDialog";
|
||||
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
||||
this.Text = "Document Properties";
|
||||
this.mnuAccessor.ResumeLayout(false);
|
||||
this.mnuObjectModel.ResumeLayout(false);
|
||||
this.mnuDataFormat.ResumeLayout(false);
|
||||
this.ResumeLayout(false);
|
||||
this.PerformLayout();
|
||||
|
||||
}
|
||||
|
||||
#endregion
|
||||
|
||||
private System.Windows.Forms.TextBox txtObjectModel;
|
||||
private System.Windows.Forms.Button cmdObjectModel;
|
||||
private System.Windows.Forms.TextBox txtDataFormat;
|
||||
private System.Windows.Forms.Button cmdDataFormat;
|
||||
private System.Windows.Forms.TextBox txtAccessor;
|
||||
private System.Windows.Forms.Button cmdAccessor;
|
||||
private System.Windows.Forms.Button cmdCancel;
|
||||
private System.Windows.Forms.Button cmdOK;
|
||||
private System.Windows.Forms.GroupBox fraDataFormatOptions;
|
||||
private System.Windows.Forms.ContextMenuStrip mnuAccessor;
|
||||
private System.Windows.Forms.ToolStripMenuItem localfileToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripSeparator fTPServerToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem hTTPServerToolStripMenuItem;
|
||||
private System.Windows.Forms.ToolStripMenuItem fTPServerToolStripMenuItem1;
|
||||
private System.Windows.Forms.ContextMenuStrip mnuObjectModel;
|
||||
private System.Windows.Forms.ToolStripSeparator mnuObjectModelSep1;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuObjectModelSelect;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuObjectModelClear;
|
||||
private System.Windows.Forms.ContextMenuStrip mnuDataFormat;
|
||||
private System.Windows.Forms.ToolStripSeparator mnuDataFormatSep1;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuDataFormatSelect;
|
||||
private System.Windows.Forms.ToolStripMenuItem mnuDataFormatClear;
|
||||
|
||||
}
|
||||
}
|
||||
@ -0,0 +1,136 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Drawing;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace UniversalEditor.UserInterface.WindowsForms.Dialogs
|
||||
{
|
||||
public partial class DocumentPropertiesDialog : Form
|
||||
{
|
||||
public DocumentPropertiesDialog()
|
||||
{
|
||||
InitializeComponent();
|
||||
}
|
||||
|
||||
private ObjectModel mvarObjectModel = null;
|
||||
public ObjectModel ObjectModel { get { return mvarObjectModel; } set { mvarObjectModel = value; } }
|
||||
|
||||
private DataFormat mvarDataFormat = null;
|
||||
public DataFormat DataFormat { get { return mvarDataFormat; } set { mvarDataFormat = value; } }
|
||||
|
||||
private Accessor mvarAccessor = null;
|
||||
public Accessor Accessor { get { return mvarAccessor; } set { mvarAccessor = value; } }
|
||||
|
||||
private void cmdOK_Click(object sender, EventArgs e)
|
||||
{
|
||||
if (mvarObjectModel == null)
|
||||
{
|
||||
MessageBox.Show("Please choose an object model for the document.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
if (mvarDataFormat == null)
|
||||
{
|
||||
MessageBox.Show("Please choose an object model for the document.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
if (mvarAccessor == null)
|
||||
{
|
||||
MessageBox.Show("Please choose an object model for the document.", "Error", MessageBoxButtons.OK, MessageBoxIcon.Error);
|
||||
return;
|
||||
}
|
||||
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.OK;
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void cmdCancel_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void cmdObjectModel_Click(object sender, EventArgs e)
|
||||
{
|
||||
ShowContextMenuBelow(mnuObjectModel, cmdObjectModel);
|
||||
}
|
||||
|
||||
private void cmdDataFormat_Click(object sender, EventArgs e)
|
||||
{
|
||||
ShowContextMenuBelow(mnuDataFormat, cmdDataFormat);
|
||||
}
|
||||
|
||||
private void cmdAccessor_Click(object sender, EventArgs e)
|
||||
{
|
||||
ShowContextMenuBelow(mnuAccessor, cmdAccessor);
|
||||
}
|
||||
|
||||
private void ShowContextMenuBelow(ContextMenuStrip menu, Control parent)
|
||||
{
|
||||
Point pt = PointToScreen(parent.Location);
|
||||
menu.Show(pt.X, pt.Y + parent.Height);
|
||||
}
|
||||
|
||||
private void mnuObjectModelSelect_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void mnuObjectModelClear_Click(object sender, EventArgs e)
|
||||
{
|
||||
mvarObjectModel = null;
|
||||
txtObjectModel.Text = String.Empty;
|
||||
RefreshButtons();
|
||||
}
|
||||
|
||||
private void RefreshButtons()
|
||||
{
|
||||
if (mvarDataFormat != null)
|
||||
{
|
||||
DataFormatReference dfr = mvarDataFormat.MakeReference();
|
||||
txtDataFormat.Text = dfr.Title + " (" + DataFormatFilterCollectionToString(dfr.Filters) + ")";
|
||||
}
|
||||
cmdOK.Enabled = (mvarObjectModel != null && mvarDataFormat != null && mvarAccessor != null);
|
||||
}
|
||||
|
||||
private string DataFormatFilterCollectionToString(DataFormatFilter.DataFormatFilterCollection collection)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
foreach (DataFormatFilter filter in collection)
|
||||
{
|
||||
sb.Append(StringArrayToString(filter.FileNameFilters));
|
||||
if (collection.IndexOf(filter) < collection.Count - 1)
|
||||
{
|
||||
sb.Append("; ");
|
||||
}
|
||||
}
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
private string StringArrayToString(System.Collections.Specialized.StringCollection collection)
|
||||
{
|
||||
StringBuilder sb = new StringBuilder();
|
||||
foreach (string s in collection)
|
||||
{
|
||||
sb.Append(s);
|
||||
if (collection.IndexOf(s) < collection.Count - 1)
|
||||
{
|
||||
sb.Append(", ");
|
||||
}
|
||||
}
|
||||
return sb.ToString();
|
||||
}
|
||||
|
||||
private void mnuDataFormatSelect_Click(object sender, EventArgs e)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
private void mnuDataFormatClear_Click(object sender, EventArgs e)
|
||||
{
|
||||
mvarDataFormat = null;
|
||||
RefreshButtons();
|
||||
}
|
||||
}
|
||||
}
|
||||
@ -53,6 +53,12 @@
|
||||
<Compile Include="Controls\OutputWindow.Designer.cs">
|
||||
<DependentUpon>OutputWindow.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="Dialogs\DocumentPropertiesDialog.cs">
|
||||
<SubType>Form</SubType>
|
||||
</Compile>
|
||||
<Compile Include="Dialogs\DocumentPropertiesDialog.Designer.cs">
|
||||
<DependentUpon>DocumentPropertiesDialog.cs</DependentUpon>
|
||||
</Compile>
|
||||
<Compile Include="LocalConfiguration.cs" />
|
||||
<Compile Include="Controls\ErrorList.cs">
|
||||
<SubType>UserControl</SubType>
|
||||
@ -216,6 +222,9 @@
|
||||
<EmbeddedResource Include="Dialogs\OptionsDialog.resx">
|
||||
<DependentUpon>OptionsDialog.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Dialogs\DocumentPropertiesDialog.resx">
|
||||
<DependentUpon>DocumentPropertiesDialog.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
<EmbeddedResource Include="Dialogs\SelectEnvironmentDialog.resx">
|
||||
<DependentUpon>SelectEnvironmentDialog.cs</DependentUpon>
|
||||
</EmbeddedResource>
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user