Update of /cvsroot/mmclibrary/mmclibrary/MMCLib2/Wizards
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17108
Modified Files:
WizardBase.cs WizardBase.resx WizardPage.cs WizardPage.resx
Log Message:
Added i18n support
Changed a lot of protected variables that where storage for properties to private
Index: WizardPage.cs
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Wizards/WizardPage.cs,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WizardPage.cs 31 Mar 2004 07:58:46 -0000 1.1
--- WizardPage.cs 19 Jan 2005 23:56:04 -0000 1.2
***************
*** 14,21 ****
public class WizardPage : System.Windows.Forms.UserControl
{
- private Panel pnlHeader;
- public PictureBox pictWizLogo;
- protected Label lblExpandedDescription;
- protected Label lblPageCaption;
private Container components = null;
--- 14,17 ----
***************
*** 26,32 ****
public delegate void WizardPageChanged(WizardPage me);
! protected ArrayList listeners = new ArrayList();
! protected WizardBase wizardBase;
! protected BaseNode node;
/// <summary>
--- 22,32 ----
public delegate void WizardPageChanged(WizardPage me);
! protected ArrayList m_listeners = new ArrayList();
! private WizardBase _wizardBase;
! private System.Windows.Forms.Panel _pnlHeader;
! protected System.Windows.Forms.PictureBox m_pictWizLogo;
! protected System.Windows.Forms.Label m_lblExpandedDescription;
! protected System.Windows.Forms.Label m_lblPageCaption;
! protected BaseNode m_node;
/// <summary>
***************
*** 43,49 ****
/// </summary>
/// <param name="Node">The node where we belong to</param>
! public WizardPage(BaseNode Node)
{
! this.node = Node;
InitializeComponent();
}
--- 43,49 ----
/// </summary>
/// <param name="Node">The node where we belong to</param>
! public WizardPage(BaseNode node)
{
! m_node = node;
InitializeComponent();
}
***************
*** 54,67 ****
public BaseNode Node
{
! get{ return this.node; }
}
/// <summary>
! /// Get the wizard where we belong to
/// </summary>
public WizardBase WizardBase
{
! get { return wizardBase; }
! set { wizardBase = value; }
}
--- 54,67 ----
public BaseNode Node
{
! get{ return m_node; }
}
/// <summary>
! /// Get or set the wizard where we belong to
/// </summary>
public WizardBase WizardBase
{
! get { return _wizardBase; }
! set { _wizardBase = value; }
}
***************
*** 82,86 ****
public void Add_WizardPageStateChange(WizardPageChanged listener)
{
! this.listeners.Add(listener);
}
--- 82,86 ----
public void Add_WizardPageStateChange(WizardPageChanged listener)
{
! this.m_listeners.Add(listener);
}
***************
*** 91,95 ****
public void Remove_WizardPageStateChange(WizardPageChanged listener)
{
! this.listeners.Remove(listener);
}
--- 91,95 ----
public void Remove_WizardPageStateChange(WizardPageChanged listener)
{
! this.m_listeners.Remove(listener);
}
***************
*** 99,103 ****
public void FirePageChange()
{
! object[] list = this.listeners.ToArray();
for(int i=0, max=list.Length; i<max; i++)
Invoke((WizardPageChanged)list[i], new object[] { this });
--- 99,103 ----
public void FirePageChange()
{
! object[] list = this.m_listeners.ToArray();
for(int i=0, max=list.Length; i<max; i++)
Invoke((WizardPageChanged)list[i], new object[] { this });
***************
*** 134,186 ****
private void InitializeComponent()
{
! this.pnlHeader = new System.Windows.Forms.Panel();
! this.pictWizLogo = new System.Windows.Forms.PictureBox();
! this.lblExpandedDescription = new System.Windows.Forms.Label();
! this.lblPageCaption = new System.Windows.Forms.Label();
! this.pnlHeader.SuspendLayout();
this.SuspendLayout();
//
! // pnlHeader
//
! this.pnlHeader.BackColor = System.Drawing.SystemColors.Window;
! this.pnlHeader.Controls.Add(this.pictWizLogo);
! this.pnlHeader.Controls.Add(this.lblExpandedDescription);
! this.pnlHeader.Controls.Add(this.lblPageCaption);
! this.pnlHeader.Location = new System.Drawing.Point(0, 0);
! this.pnlHeader.Name = "pnlHeader";
! this.pnlHeader.Size = new System.Drawing.Size(496, 64);
! this.pnlHeader.TabIndex = 1;
//
! // pictWizLogo
//
! this.pictWizLogo.Location = new System.Drawing.Point(440, 8);
! this.pictWizLogo.Name = "pictWizLogo";
! this.pictWizLogo.Size = new System.Drawing.Size(48, 48);
! this.pictWizLogo.TabIndex = 2;
! this.pictWizLogo.TabStop = false;
//
! // lblExpandedDescription
//
! this.lblExpandedDescription.Location = new System.Drawing.Point(48, 32);
! this.lblExpandedDescription.Name = "lblExpandedDescription";
! this.lblExpandedDescription.Size = new System.Drawing.Size(320, 24);
! this.lblExpandedDescription.TabIndex = 1;
! this.lblExpandedDescription.Text = "Wizard page explanation";
//
! // lblPageCaption
//
! this.lblPageCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
! this.lblPageCaption.Location = new System.Drawing.Point(16, 16);
! this.lblPageCaption.Name = "lblPageCaption";
! this.lblPageCaption.Size = new System.Drawing.Size(352, 16);
! this.lblPageCaption.TabIndex = 0;
! this.lblPageCaption.Text = "Wizard page caption";
//
// WizardPage
//
! this.Controls.Add(this.pnlHeader);
this.Name = "WizardPage";
this.Size = new System.Drawing.Size(496, 328);
! this.pnlHeader.ResumeLayout(false);
this.ResumeLayout(false);
--- 134,186 ----
private void InitializeComponent()
{
! this._pnlHeader = new System.Windows.Forms.Panel();
! this.m_pictWizLogo = new System.Windows.Forms.PictureBox();
! this.m_lblExpandedDescription = new System.Windows.Forms.Label();
! this.m_lblPageCaption = new System.Windows.Forms.Label();
! this._pnlHeader.SuspendLayout();
this.SuspendLayout();
//
! // _pnlHeader
//
! this._pnlHeader.BackColor = System.Drawing.SystemColors.Window;
! this._pnlHeader.Controls.Add(this.m_pictWizLogo);
! this._pnlHeader.Controls.Add(this.m_lblExpandedDescription);
! this._pnlHeader.Controls.Add(this.m_lblPageCaption);
! this._pnlHeader.Location = new System.Drawing.Point(0, 0);
! this._pnlHeader.Name = "_pnlHeader";
! this._pnlHeader.Size = new System.Drawing.Size(496, 64);
! this._pnlHeader.TabIndex = 1;
//
! // m_pictWizLogo
//
! this.m_pictWizLogo.Location = new System.Drawing.Point(440, 8);
! this.m_pictWizLogo.Name = "m_pictWizLogo";
! this.m_pictWizLogo.Size = new System.Drawing.Size(48, 48);
! this.m_pictWizLogo.TabIndex = 2;
! this.m_pictWizLogo.TabStop = false;
//
! // m_lblExpandedDescription
//
! this.m_lblExpandedDescription.Location = new System.Drawing.Point(48, 32);
! this.m_lblExpandedDescription.Name = "m_lblExpandedDescription";
! this.m_lblExpandedDescription.Size = new System.Drawing.Size(320, 24);
! this.m_lblExpandedDescription.TabIndex = 1;
! this.m_lblExpandedDescription.Text = "Wizard page explanation";
//
! // m_lblPageCaption
//
! this.m_lblPageCaption.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((System.Byte)(0)));
! this.m_lblPageCaption.Location = new System.Drawing.Point(16, 16);
! this.m_lblPageCaption.Name = "m_lblPageCaption";
! this.m_lblPageCaption.Size = new System.Drawing.Size(352, 16);
! this.m_lblPageCaption.TabIndex = 0;
! this.m_lblPageCaption.Text = "Wizard page caption";
//
// WizardPage
//
! this.Controls.Add(this._pnlHeader);
this.Name = "WizardPage";
this.Size = new System.Drawing.Size(496, 328);
! this._pnlHeader.ResumeLayout(false);
this.ResumeLayout(false);
Index: WizardBase.cs
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Wizards/WizardBase.cs,v
retrieving revision 1.5
retrieving revision 1.6
diff -C2 -d -r1.5 -r1.6
*** WizardBase.cs 19 Oct 2004 20:51:17 -0000 1.5
--- WizardBase.cs 19 Jan 2005 23:56:04 -0000 1.6
***************
*** 7,10 ****
--- 7,12 ----
using System.Threading;
+ using Ironring.MMC.Core;
+
namespace Ironring.MMC.Wizards
{
***************
*** 15,26 ****
*/
private Container components = null;
- protected TabControl tabWizardPages;
- private Button btnCancel;
- private Button btnNext;
- private Button btnBack;
protected ArrayList pages = new ArrayList();
! protected DialogResult m_CachedDialogResult = DialogResult.None;
/// <summary>
--- 17,28 ----
*/
private Container components = null;
protected ArrayList pages = new ArrayList();
+ private System.Windows.Forms.Button _btnCancel;
+ private System.Windows.Forms.Button _btnNext;
+ private System.Windows.Forms.Button _btnBack;
+ protected System.Windows.Forms.TabControl m_tabWizardPages;
! private DialogResult _cachedDialogResult = DialogResult.None;
/// <summary>
***************
*** 79,84 ****
public DialogResult CachedDialogResult
{
! set{m_CachedDialogResult = value; }
! get{return m_CachedDialogResult; }
}
--- 81,86 ----
public DialogResult CachedDialogResult
{
! set{_cachedDialogResult = value; }
! get{return _cachedDialogResult; }
}
***************
*** 88,93 ****
public int SelectedPage
{
! set{this.tabWizardPages.SelectedIndex = value;}
! get{return this.tabWizardPages.SelectedIndex;}
}
--- 90,95 ----
public int SelectedPage
{
! set{m_tabWizardPages.SelectedIndex = value;}
! get{return m_tabWizardPages.SelectedIndex;}
}
***************
*** 161,169 ****
if(wp.WizardPageValid)
{
! btnNext.Enabled = true;
}
else
{
! btnNext.Enabled = false;
}
}
--- 163,171 ----
if(wp.WizardPageValid)
{
! _btnNext.Enabled = true;
}
else
{
! _btnNext.Enabled = false;
}
}
***************
*** 179,184 ****
public virtual void InitPages()
{
! this.tabWizardPages.SuspendLayout();
! this.tabWizardPages.Controls.Clear();
int count = 0;
IEnumerator i=this.pages.GetEnumerator();
--- 181,186 ----
public virtual void InitPages()
{
! m_tabWizardPages.SuspendLayout();
! m_tabWizardPages.Controls.Clear();
int count = 0;
IEnumerator i=this.pages.GetEnumerator();
***************
*** 190,196 ****
tb.Controls.Add(wp);
! this.tabWizardPages.Controls.Add(tb);
}
! this.tabWizardPages.ResumeLayout(true);
InitButtons();
}
--- 192,198 ----
tb.Controls.Add(wp);
! m_tabWizardPages.Controls.Add(tb);
}
! m_tabWizardPages.ResumeLayout(true);
InitButtons();
}
***************
*** 203,226 ****
try
{
! if( tabWizardPages.SelectedIndex == (tabWizardPages.TabCount - 1) )
! {
! btnNext.Text = "&Finish";
! }
else
! {
! btnNext.Text = "&Next >";
! }
!
! if( tabWizardPages.SelectedIndex == 0 )
! {
! btnBack.Enabled = false;
! }
else
! {
! btnBack.Enabled = true;
! }
// Get the current page and check it
! WizardPage wp = (WizardPage)tabWizardPages.SelectedTab.Controls[0];
CheckWizardStatus(wp);
}
--- 205,220 ----
try
{
! if( m_tabWizardPages.SelectedIndex == (m_tabWizardPages.TabCount - 1) )
! _btnNext.Text = SnapinBase.Translate("FinishWizButton");
else
! _btnNext.Text = SnapinBase.Translate("NextWizButton");
!
! if( m_tabWizardPages.SelectedIndex == 0 )
! _btnBack.Enabled = false;
else
! _btnBack.Enabled = true;
// Get the current page and check it
! WizardPage wp = (WizardPage)m_tabWizardPages.SelectedTab.Controls[0];
CheckWizardStatus(wp);
}
***************
*** 259,315 ****
private void InitializeComponent()
{
! this.tabWizardPages = new TabControl();
! this.btnCancel = new Button();
! this.btnNext = new Button();
! this.btnBack = new Button();
this.SuspendLayout();
//
! // tabWizardPages
//
! this.tabWizardPages.Location =new System.Drawing.Point(-1, -23);
! this.tabWizardPages.Name = "tabWizardPages";
! this.tabWizardPages.SelectedIndex = 0;
! this.tabWizardPages.Size = new System.Drawing.Size(499, 367);
! this.tabWizardPages.TabIndex = 0;
//
! // btnCancel
//
! this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
! this.btnCancel.Location = new System.Drawing.Point(408, 352);
! this.btnCancel.Name = "btnCancel";
! this.btnCancel.Size = new System.Drawing.Size(80, 24);
! this.btnCancel.TabIndex = 1;
! this.btnCancel.Text = "&Cancel";
! this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
! // btnNext
//
! this.btnNext.Location = new System.Drawing.Point(320, 352);
! this.btnNext.Name = "btnNext";
! this.btnNext.Size = new System.Drawing.Size(80, 24);
! this.btnNext.TabIndex = 2;
! this.btnNext.Text = "&Next >";
! this.btnNext.Click += new System.EventHandler(this.btnNext_Click) ;
//
! // btnBack
//
! this.btnBack.Location = new System.Drawing.Point(240, 352);
! this.btnBack.Name = "btnBack";
! this.btnBack.Size = new System.Drawing.Size(80, 24);
! this.btnBack.TabIndex = 3;
! this.btnBack.Text = "< &Back";
! this.btnBack.Click += new System.EventHandler(this.btnBack_Click);
//
// WizardBase
//
! this.AcceptButton = this.btnNext;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
! this.CancelButton = this.btnCancel;
! this.ClientSize = new System.Drawing.Size(496, 381);
! this.Controls.Add(this.btnBack);
! this.Controls.Add(this.btnNext);
! this.Controls.Add(this.btnCancel);
! this.Controls.Add(this.tabWizardPages);
! this.FormBorderStyle = FormBorderStyle.FixedDialog;
this.MaximizeBox = false;
this.MinimizeBox = false;
--- 253,308 ----
private void InitializeComponent()
{
! this.m_tabWizardPages = new System.Windows.Forms.TabControl();
! this._btnCancel = new System.Windows.Forms.Button();
! this._btnNext = new System.Windows.Forms.Button();
! this._btnBack = new System.Windows.Forms.Button();
this.SuspendLayout();
//
! // m_tabWizardPages
//
! this.m_tabWizardPages.Location = new System.Drawing.Point(-1, -23);
! this.m_tabWizardPages.Name = "m_tabWizardPages";
! this.m_tabWizardPages.SelectedIndex = 0;
! this.m_tabWizardPages.Size = new System.Drawing.Size(499, 367);
! this.m_tabWizardPages.TabIndex = 0;
//
! // _btnCancel
//
! this._btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
! this._btnCancel.Location = new System.Drawing.Point(408, 352);
! this._btnCancel.Name = "_btnCancel";
! this._btnCancel.Size = new System.Drawing.Size(80, 24);
! this._btnCancel.TabIndex = 1;
! this._btnCancel.Text = SnapinBase.Translate("CancelWizButton");
! this._btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
//
! // _btnNext
//
! this._btnNext.Location = new System.Drawing.Point(320, 352);
! this._btnNext.Name = "_btnNext";
! this._btnNext.Size = new System.Drawing.Size(80, 24);
! this._btnNext.TabIndex = 2;
! this._btnNext.Text = SnapinBase.Translate("NextWizButton");
! this._btnNext.Click += new System.EventHandler(this.btnNext_Click);
//
! // _btnBack
//
! this._btnBack.Location = new System.Drawing.Point(240, 352);
! this._btnBack.Name = "_btnBack";
! this._btnBack.Size = new System.Drawing.Size(80, 24);
! this._btnBack.TabIndex = 3;
! this._btnBack.Text = SnapinBase.Translate("BackWizButton");
! this._btnBack.Click += new System.EventHandler(this.btnBack_Click);
//
// WizardBase
//
! this.AcceptButton = this._btnNext;
this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
! this.CancelButton = this._btnCancel;
! this.ClientSize = new System.Drawing.Size(496, 378);
! this.Controls.Add(this._btnBack);
! this.Controls.Add(this._btnNext);
! this.Controls.Add(this._btnCancel);
! this.Controls.Add(this.m_tabWizardPages);
this.MaximizeBox = false;
this.MinimizeBox = false;
***************
*** 325,332 ****
private void btnBack_Click (object sender, System.EventArgs e)
{
! int current = tabWizardPages.SelectedIndex;
if(current > 0)
{
! tabWizardPages.SelectedIndex = current - 1;
}
InitButtons();
--- 318,325 ----
private void btnBack_Click (object sender, System.EventArgs e)
{
! int current = m_tabWizardPages.SelectedIndex;
if(current > 0)
{
! m_tabWizardPages.SelectedIndex = current - 1;
}
InitButtons();
***************
*** 335,343 ****
private void btnNext_Click (Object sender, System.EventArgs e)
{
! int current = tabWizardPages.SelectedIndex;
! int max = tabWizardPages.TabCount;
if(current < (max-1))
{
! tabWizardPages.SelectedIndex = current + 1;
InitButtons();
}
--- 328,336 ----
private void btnNext_Click (Object sender, System.EventArgs e)
{
! int current = m_tabWizardPages.SelectedIndex;
! int max = m_tabWizardPages.TabCount;
if(current < (max-1))
{
! m_tabWizardPages.SelectedIndex = current + 1;
InitButtons();
}
***************
*** 381,385 ****
/// The form to show.
/// </summary>
! class WizardThread
{
protected WizardBase m_Form;
--- 374,378 ----
/// The form to show.
/// </summary>
! internal class WizardThread
{
protected WizardBase m_Form;
Index: WizardBase.resx
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Wizards/WizardBase.resx,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WizardBase.resx 31 Mar 2004 07:58:46 -0000 1.1
--- WizardBase.resx 19 Jan 2005 23:56:04 -0000 1.2
***************
*** 1,42 ****
! <?xml version="1.0" encoding="utf-8" ?>
<root>
! <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
! <xsd:element name="root" msdata:IsDataSet="true">
! <xsd:complexType>
! <xsd:choice maxOccurs="unbounded">
! <xsd:element name="data">
! <xsd:complexType>
! <xsd:sequence>
! <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
! <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
! </xsd:sequence>
! <xsd:attribute name="name" type="xsd:string" />
! <xsd:attribute name="type" type="xsd:string" />
! <xsd:attribute name="mimetype" type="xsd:string" />
! </xsd:complexType>
! </xsd:element>
! <xsd:element name="resheader">
! <xsd:complexType>
! <xsd:sequence>
! <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
! </xsd:sequence>
! <xsd:attribute name="name" type="xsd:string" use="required" />
! </xsd:complexType>
! </xsd:element>
! </xsd:choice>
! </xsd:complexType>
! </xsd:element>
! </xsd:schema>
! <resheader name="ResMimeType">
! <value>text/microsoft-resx</value>
! </resheader>
! <resheader name="Version">
! <value>1.0.0.0</value>
! </resheader>
! <resheader name="Reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
! </resheader>
! <resheader name="Writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
! </resheader>
! </root>
--- 1,175 ----
! <?xml version="1.0" encoding="utf-8"?>
<root>
! <!--
! Microsoft ResX Schema
!
! Version 1.3
!
! The primary goals of this format is to allow a simple XML format
! that is mostly human readable. The generation and parsing of the
! various data types are done through the TypeConverter classes
! associated with the data types.
!
! Example:
!
! ... ado.net/XML headers & schema ...
! <resheader name="resmimetype">text/microsoft-resx</resheader>
! <resheader name="version">1.3</resheader>
! <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
! <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
! <data name="Name1">this is my long string</data>
! <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
! <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
! [base64 mime encoded serialized .NET Framework object]
! </data>
! <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
! [base64 mime encoded string representing a byte array form of the .NET Framework object]
! </data>
!
! There are any number of "resheader" rows that contain simple
! name/value pairs.
!
! Each data row contains a name, and value. The row also contains a
! type or mimetype. Type corresponds to a .NET class that support
! text/value conversion through the TypeConverter architecture.
! Classes that don't support this are serialized and stored with the
! mimetype set.
!
! The mimetype is used forserialized objects, and tells the
! ResXResourceReader how to depersist the object. This is currently not
! extensible. For a given mimetype the value must be set accordingly:
!
! Note - application/x-microsoft.net.object.binary.base64 is the format
! that the ResXResourceWriter will generate, however the reader can
! read any of the formats listed below.
!
! mimetype: application/x-microsoft.net.object.binary.base64
! value : The object must be serialized with
! : System.Serialization.Formatters.Binary.BinaryFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.soap.base64
! value : The object must be serialized with
! : System.Runtime.Serialization.Formatters.Soap.SoapFormatter
! : and then encoded with base64 encoding.
!
! mimetype: application/x-microsoft.net.object.bytearray.base64
! value : The object must be serialized into a byte array
! : using a System.ComponentModel.TypeConverter
! : and then encoded with base64 encoding.
! -->
! <xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
! <xsd:element name="root" msdata:IsDataSet="true">
! <xsd:complexType>
! <xsd:choice maxOccurs="unbounded">
! <xsd:element name="data">
! <xsd:complexType>
! <xsd:sequence>
! <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
! <xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
! </xsd:sequence>
! <xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
! <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
! <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
! </xsd:complexType>
! </xsd:element>
! <xsd:element name="resheader">
! <xsd:complexType>
! <xsd:sequence>
! <xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
! </xsd:sequence>
! <xsd:attribute name="name" type="xsd:string" use="required" />
! </xsd:complexType>
! </xsd:element>
! </xsd:choice>
! </xsd:complexType>
! </xsd:element>
! </xsd:schema>
! <resheader name="resmimetype">
! <value>text/microsoft-resx</value>
! </resheader>
! <resheader name="version">
! <value>1.3</value>
! </resheader>
! <resheader name="reader">
! <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
! </resheader>
! <resheader name="writer">
! <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
! </resheader>
! <data name="m_tabWizardPages.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>True</value>
! </data>
! <data name="m_tabWizardPages.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="m_tabWizardPages.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>True</value>
! </data>
! <data name="m_tabWizardPages.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Family</value>
! </data>
! <data name="m_tabWizardPages.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="m_tabWizardPages.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
! <value>8, 8</value>
! </data>
! <data name="_btnCancel.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="_btnCancel.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="_btnCancel.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="_btnNext.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="_btnNext.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="_btnNext.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="_btnBack.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="_btnBack.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="_btnBack.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! <data name="$this.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="$this.Language" type="System.Globalization.CultureInfo, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>(Default)</value>
! </data>
! <data name="$this.TrayLargeIcon" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="$this.Localizable" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>False</value>
! </data>
! <data name="$this.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
! <value>8, 8</value>
! </data>
! <data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>True</value>
! </data>
! <data name="$this.TrayHeight" type="System.Int32, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>80</value>
! </data>
! <data name="$this.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>True</value>
! </data>
! <data name="$this.Name">
! <value>WizardBase</value>
! </data>
! <data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Private</value>
! </data>
! </root>
\ No newline at end of file
Index: WizardPage.resx
===================================================================
RCS file: /cvsroot/mmclibrary/mmclibrary/MMCLib2/Wizards/WizardPage.resx,v
retrieving revision 1.1
retrieving revision 1.2
diff -C2 -d -r1.1 -r1.2
*** WizardPage.resx 31 Mar 2004 07:58:46 -0000 1.1
--- WizardPage.resx 19 Jan 2005 23:56:04 -0000 1.2
***************
*** 98,144 ****
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
! <data name="pnlHeader.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="pnlHeader.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
! <data name="pnlHeader.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="pnlHeader.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
! <data name="pnlHeader.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
! <data name="pnlHeader.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="pictWizLogo.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="pictWizLogo.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="pictWizLogo.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Public</value>
</data>
! <data name="lblExpandedDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="lblExpandedDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="lblExpandedDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Family</value>
</data>
! <data name="lblPageCaption.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="lblPageCaption.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="lblPageCaption.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Family</value>
</data>
--- 98,144 ----
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
! <data name="_pnlHeader.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="_pnlHeader.SnapToGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
! <data name="_pnlHeader.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="_pnlHeader.GridSize" type="System.Drawing.Size, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
<value>8, 8</value>
</data>
! <data name="_pnlHeader.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
</data>
! <data name="_pnlHeader.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="m_pictWizLogo.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="m_pictWizLogo.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="m_pictWizLogo.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
! <value>Family</value>
</data>
! <data name="m_lblExpandedDescription.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="m_lblExpandedDescription.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="m_lblExpandedDescription.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Family</value>
</data>
! <data name="m_lblPageCaption.Locked" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>False</value>
</data>
! <data name="m_lblPageCaption.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
</data>
! <data name="m_lblPageCaption.Modifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Family</value>
</data>
***************
*** 152,158 ****
<value>True</value>
</data>
- <data name="$this.Name">
- <value>WizardPage</value>
- </data>
<data name="$this.DrawGrid" type="System.Boolean, mscorlib, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>True</value>
--- 152,155 ----
***************
*** 167,170 ****
--- 164,170 ----
<value>False</value>
</data>
+ <data name="$this.Name">
+ <value>WizardPage</value>
+ </data>
<data name="$this.DefaultModifiers" type="System.CodeDom.MemberAttributes, System, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
<value>Private</value>
|