[mapguide-commits] r7969 - in trunk/Tools/Maestro/Maestro.Editors: . MapDefinition

svn_mapguide at osgeo.org svn_mapguide at osgeo.org
Tue Dec 24 03:52:20 PST 2013


Author: jng
Date: 2013-12-24 03:52:20 -0800 (Tue, 24 Dec 2013)
New Revision: 7969

Added:
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.Designer.cs
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.cs
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.resx
Modified:
   trunk/Tools/Maestro/Maestro.Editors/Maestro.Editors.csproj
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.Designer.cs
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.cs
   trunk/Tools/Maestro/Maestro.Editors/MapDefinition/MapLayersSectionCtrl.cs
Log:
#2385: Instead of just showing a count of selected items in the common property grid, have a link so the user can see the list of layers/groups they're batch editing properties for.

Modified: trunk/Tools/Maestro/Maestro.Editors/Maestro.Editors.csproj
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/Maestro.Editors.csproj	2013-12-24 11:19:03 UTC (rev 7968)
+++ trunk/Tools/Maestro/Maestro.Editors/Maestro.Editors.csproj	2013-12-24 11:52:20 UTC (rev 7969)
@@ -918,6 +918,12 @@
     <Compile Include="MapDefinition\MapTreeModels.cs" />
     <Compile Include="MapDefinition\NsDoc.cs" />
     <Compile Include="MapDefinition\ScaleListGenerator.cs" />
+    <Compile Include="MapDefinition\SelectedItemsDialog.cs">
+      <SubType>Form</SubType>
+    </Compile>
+    <Compile Include="MapDefinition\SelectedItemsDialog.Designer.cs">
+      <DependentUpon>SelectedItemsDialog.cs</DependentUpon>
+    </Compile>
     <Compile Include="Migration\CopyMoveToServerDialog.cs">
       <SubType>Form</SubType>
     </Compile>
@@ -1674,6 +1680,9 @@
       <DependentUpon>MapSettingsSectionCtrl.cs</DependentUpon>
       <SubType>Designer</SubType>
     </EmbeddedResource>
+    <EmbeddedResource Include="MapDefinition\SelectedItemsDialog.resx">
+      <DependentUpon>SelectedItemsDialog.cs</DependentUpon>
+    </EmbeddedResource>
     <EmbeddedResource Include="Migration\CopyMoveToServerDialog.resx">
       <DependentUpon>CopyMoveToServerDialog.cs</DependentUpon>
     </EmbeddedResource>

Modified: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.Designer.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.Designer.cs	2013-12-24 11:19:03 UTC (rev 7968)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.Designer.cs	2013-12-24 11:52:20 UTC (rev 7969)
@@ -30,11 +30,13 @@
         {
             this.grpProperties = new System.Windows.Forms.GroupBox();
             this.propGrid = new System.Windows.Forms.PropertyGrid();
+            this.lnkCount = new System.Windows.Forms.LinkLabel();
             this.grpProperties.SuspendLayout();
             this.SuspendLayout();
             // 
             // grpProperties
             // 
+            this.grpProperties.Controls.Add(this.lnkCount);
             this.grpProperties.Controls.Add(this.propGrid);
             this.grpProperties.Dock = System.Windows.Forms.DockStyle.Fill;
             this.grpProperties.Location = new System.Drawing.Point(0, 0);
@@ -54,6 +56,15 @@
             this.propGrid.TabIndex = 0;
             this.propGrid.ToolbarVisible = false;
             // 
+            // lnkCount
+            // 
+            this.lnkCount.AutoSize = true;
+            this.lnkCount.Location = new System.Drawing.Point(106, 0);
+            this.lnkCount.Name = "lnkCount";
+            this.lnkCount.Size = new System.Drawing.Size(0, 13);
+            this.lnkCount.TabIndex = 1;
+            this.lnkCount.LinkClicked += new System.Windows.Forms.LinkLabelLinkClickedEventHandler(this.lnkCount_LinkClicked);
+            // 
             // CommonPropertyCtrl
             // 
             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
@@ -62,6 +73,7 @@
             this.Name = "CommonPropertyCtrl";
             this.Size = new System.Drawing.Size(245, 261);
             this.grpProperties.ResumeLayout(false);
+            this.grpProperties.PerformLayout();
             this.ResumeLayout(false);
 
         }
@@ -70,5 +82,6 @@
 
         private System.Windows.Forms.GroupBox grpProperties;
         private System.Windows.Forms.PropertyGrid propGrid;
+        private System.Windows.Forms.LinkLabel lnkCount;
     }
 }

Modified: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.cs	2013-12-24 11:19:03 UTC (rev 7968)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/CommonPropertyCtrl.cs	2013-12-24 11:52:20 UTC (rev 7969)
@@ -49,13 +49,11 @@
         {
             if (count > 1)
             {
-                grpProperties.Text += " (" + string.Format(Strings.SelectedItemCount, count) + ")";
+                lnkCount.Text = "(" + string.Format(Strings.SelectedItemCount, count) + ")";
             }
             else
             {
-                int lidx = grpProperties.Text.LastIndexOf("(");
-                if (lidx >= 0)
-                    grpProperties.Text = grpProperties.Text.Substring(0, lidx);
+                lnkCount.Text = "";
             }
         }
 
@@ -68,5 +66,13 @@
                 SetCount(value.Length);
             }
         }
+
+        private void lnkCount_LinkClicked(object sender, LinkLabelLinkClickedEventArgs e)
+        {
+            if (propGrid.SelectedObjects != null && propGrid.SelectedObjects.Length > 0)
+            {
+                new SelectedItemsDialog(propGrid.SelectedObjects).ShowDialog();
+            }
+        }
     }
 }

Modified: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/MapLayersSectionCtrl.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/MapLayersSectionCtrl.cs	2013-12-24 11:19:03 UTC (rev 7968)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/MapLayersSectionCtrl.cs	2013-12-24 11:52:20 UTC (rev 7969)
@@ -230,7 +230,7 @@
 
         #region Designer Attributes
 
-        class BaseLayerItemDesigner
+        internal class BaseLayerItemDesigner
         {
             private BaseLayerItem _layer;
 
@@ -239,6 +239,9 @@
                 _layer = layer;
             }
 
+            [Browsable(false)]
+            internal BaseLayerItem Item { get { return _layer; } }
+
             [LocalizedDisplayName("MdfEditorSelectable")]
             public bool Selectable
             {
@@ -261,7 +264,7 @@
             }
         }
 
-        class BaseGroupItemDesigner
+        internal class BaseGroupItemDesigner
         {
             private BaseLayerGroupItem _group;
 
@@ -270,6 +273,9 @@
                 _group = group;
             }
 
+            [Browsable(false)]
+            internal BaseLayerGroupItem Item { get { return _group; } }
+
             [LocalizedDisplayName("MdfEditorVisible")]
             public bool Visible
             {
@@ -292,7 +298,7 @@
             }
         }
 
-        class LayerItemDesigner
+        internal class LayerItemDesigner
         {
             private LayerItem _layer;
 
@@ -301,6 +307,9 @@
                 _layer = layer;
             }
 
+            [Browsable(false)]
+            internal LayerItem Item { get { return _layer; } }
+
             [LocalizedDisplayName("MdfEditorSelectable")]
             public bool Selectable
             {
@@ -330,7 +339,7 @@
             }
         }
 
-        class GroupItemDesigner
+        internal class GroupItemDesigner
         {
             private GroupItem _group;
 
@@ -339,6 +348,9 @@
                 _group = group;
             }
 
+            [Browsable(false)]
+            internal GroupItem Item { get { return _group; } }
+
             [LocalizedDisplayName("MdfEditorVisible")]
             public bool Visible
             {

Added: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.Designer.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.Designer.cs	                        (rev 0)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.Designer.cs	2013-12-24 11:52:20 UTC (rev 7969)
@@ -0,0 +1,79 @@
+namespace Maestro.Editors.MapDefinition
+{
+    partial class SelectedItemsDialog
+    {
+        /// <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();
+            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(SelectedItemsDialog));
+            this.btnClose = new System.Windows.Forms.Button();
+            this.lstItems = new System.Windows.Forms.ListView();
+            this.imageList = new System.Windows.Forms.ImageList(this.components);
+            this.SuspendLayout();
+            // 
+            // btnClose
+            // 
+            resources.ApplyResources(this.btnClose, "btnClose");
+            this.btnClose.Name = "btnClose";
+            this.btnClose.UseVisualStyleBackColor = true;
+            this.btnClose.Click += new System.EventHandler(this.btnClose_Click);
+            // 
+            // lstItems
+            // 
+            resources.ApplyResources(this.lstItems, "lstItems");
+            this.lstItems.LargeImageList = this.imageList;
+            this.lstItems.Name = "lstItems";
+            this.lstItems.SmallImageList = this.imageList;
+            this.lstItems.UseCompatibleStateImageBehavior = false;
+            this.lstItems.View = System.Windows.Forms.View.List;
+            // 
+            // imageList
+            // 
+            this.imageList.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList.ImageStream")));
+            this.imageList.TransparentColor = System.Drawing.Color.Transparent;
+            this.imageList.Images.SetKeyName(0, "layer.png");
+            this.imageList.Images.SetKeyName(1, "folder-horizontal.png");
+            // 
+            // SelectedItemsDialog
+            // 
+            resources.ApplyResources(this, "$this");
+            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
+            this.ControlBox = false;
+            this.Controls.Add(this.lstItems);
+            this.Controls.Add(this.btnClose);
+            this.Name = "SelectedItemsDialog";
+            this.ResumeLayout(false);
+
+        }
+
+        #endregion
+
+        private System.Windows.Forms.Button btnClose;
+        private System.Windows.Forms.ListView lstItems;
+        private System.Windows.Forms.ImageList imageList;
+    }
+}
\ No newline at end of file

Added: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.cs
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.cs	                        (rev 0)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.cs	2013-12-24 11:52:20 UTC (rev 7969)
@@ -0,0 +1,76 @@
+#region Disclaimer / License
+// Copyright (C) 2013, Jackie Ng
+// http://trac.osgeo.org/mapguide/wiki/maestro, jumpinjackie at gmail.com
+// 
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License, or (at your option) any later version.
+// 
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+// 
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301  USA
+// 
+#endregion
+using System;
+using System.Collections.Generic;
+using System.ComponentModel;
+using System.Data;
+using System.Drawing;
+using System.Linq;
+using System.Text;
+using System.Windows.Forms;
+
+namespace Maestro.Editors.MapDefinition
+{
+    internal partial class SelectedItemsDialog : Form
+    {
+        private SelectedItemsDialog()
+        {
+            InitializeComponent();
+        }
+
+        public SelectedItemsDialog(object[] items)
+            : this()
+        {
+            foreach (var obj in items)
+            {
+                var li = obj as Maestro.Editors.MapDefinition.MapLayersSectionCtrl.LayerItemDesigner;
+                var gi = obj as Maestro.Editors.MapDefinition.MapLayersSectionCtrl.GroupItemDesigner;
+                var bli = obj as Maestro.Editors.MapDefinition.MapLayersSectionCtrl.BaseLayerItemDesigner;
+                var bgi = obj as Maestro.Editors.MapDefinition.MapLayersSectionCtrl.BaseGroupItemDesigner;
+
+                ListViewItem lv = null;
+                if (li != null)
+                {
+                    lv = new ListViewItem(li.Item.Text, 0);
+                }
+                else if (gi != null)
+                {
+                    lv = new ListViewItem(gi.Item.Text, 1);
+                }
+                else if (bli != null)
+                {
+                    lv = new ListViewItem(bli.Item.Text, 0);
+                }
+                else if (bgi != null)
+                {
+                    lv = new ListViewItem(bgi.Item.Text, 1);
+                }
+
+                if (lv != null)
+                    lstItems.Items.Add(lv);
+            }
+        }
+
+        private void btnClose_Click(object sender, EventArgs e)
+        {
+            this.Close();
+        }
+    }
+}

Added: trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.resx
===================================================================
--- trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.resx	                        (rev 0)
+++ trunk/Tools/Maestro/Maestro.Editors/MapDefinition/SelectedItemsDialog.resx	2013-12-24 11:52:20 UTC (rev 7969)
@@ -0,0 +1,244 @@
+<?xml version="1.0" encoding="utf-8"?>
+<root>
+  <!-- 
+    Microsoft ResX Schema 
+    
+    Version 2.0
+    
+    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">2.0</resheader>
+    <resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
+    <resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
+    <data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
+    <data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
+    <data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
+        <value>[base64 mime encoded serialized .NET Framework object]</value>
+    </data>
+    <data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
+        <value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
+        <comment>This is a comment</comment>
+    </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 for serialized 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.Runtime.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:import namespace="http://www.w3.org/XML/1998/namespace" />
+    <xsd:element name="root" msdata:IsDataSet="true">
+      <xsd:complexType>
+        <xsd:choice maxOccurs="unbounded">
+          <xsd:element name="metadata">
+            <xsd:complexType>
+              <xsd:sequence>
+                <xsd:element name="value" type="xsd:string" minOccurs="0" />
+              </xsd:sequence>
+              <xsd:attribute name="name" use="required" type="xsd:string" />
+              <xsd:attribute name="type" type="xsd:string" />
+              <xsd:attribute name="mimetype" type="xsd:string" />
+              <xsd:attribute ref="xml:space" />
+            </xsd:complexType>
+          </xsd:element>
+          <xsd:element name="assembly">
+            <xsd:complexType>
+              <xsd:attribute name="alias" type="xsd:string" />
+              <xsd:attribute name="name" type="xsd:string" />
+            </xsd:complexType>
+          </xsd:element>
+          <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" use="required" msdata:Ordinal="1" />
+              <xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
+              <xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
+              <xsd:attribute ref="xml:space" />
+            </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>2.0</value>
+  </resheader>
+  <resheader name="reader">
+    <value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <resheader name="writer">
+    <value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </resheader>
+  <assembly alias="System.Windows.Forms" name="System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
+  <data name="btnClose.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
+    <value>Bottom, Right</value>
+  </data>
+  <assembly alias="System.Drawing" name="System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a" />
+  <data name="btnClose.Location" type="System.Drawing.Point, System.Drawing">
+    <value>197, 227</value>
+  </data>
+  <data name="btnClose.Size" type="System.Drawing.Size, System.Drawing">
+    <value>75, 23</value>
+  </data>
+  <assembly alias="mscorlib" name="mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089" />
+  <data name="btnClose.TabIndex" type="System.Int32, mscorlib">
+    <value>0</value>
+  </data>
+  <data name="btnClose.Text" xml:space="preserve">
+    <value>Close</value>
+  </data>
+  <data name=">>btnClose.Name" xml:space="preserve">
+    <value>btnClose</value>
+  </data>
+  <data name=">>btnClose.Type" xml:space="preserve">
+    <value>System.Windows.Forms.Button, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </data>
+  <data name=">>btnClose.Parent" xml:space="preserve">
+    <value>$this</value>
+  </data>
+  <data name=">>btnClose.ZOrder" xml:space="preserve">
+    <value>1</value>
+  </data>
+  <data name="lstItems.Anchor" type="System.Windows.Forms.AnchorStyles, System.Windows.Forms">
+    <value>Top, Bottom, Left, Right</value>
+  </data>
+  <metadata name="imageList.TrayLocation" type="System.Drawing.Point, System.Drawing, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a">
+    <value>17, 17</value>
+  </metadata>
+  <data name="imageList.ImageStream" mimetype="application/x-microsoft.net.object.binary.base64">
+    <value>
+        AAEAAAD/////AQAAAAAAAAAMAgAAAFdTeXN0ZW0uV2luZG93cy5Gb3JtcywgVmVyc2lvbj00LjAuMC4w
+        LCBDdWx0dXJlPW5ldXRyYWwsIFB1YmxpY0tleVRva2VuPWI3N2E1YzU2MTkzNGUwODkFAQAAACZTeXN0
+        ZW0uV2luZG93cy5Gb3Jtcy5JbWFnZUxpc3RTdHJlYW1lcgEAAAAERGF0YQcCAgAAAAkDAAAADwMAAABa
+        CAAAAk1TRnQBSQFMAgEBAgEAARABAAEQAQABEAEAARABAAT/AQkBAAj/AUIBTQE2AQQGAAE2AQQCAAEo
+        AwABQAMAARADAAEBAQABCAYAAQQYAAGAAgABgAMAAoABAAGAAwABgAEAAYABAAKAAgADwAEAAcAB3AHA
+        AQAB8AHKAaYBAAEzBQABMwEAATMBAAEzAQACMwIAAxYBAAMcAQADIgEAAykBAANVAQADTQEAA0IBAAM5
+        AQABgAF8Af8BAAJQAf8BAAGTAQAB1gEAAf8B7AHMAQABxgHWAe8BAAHWAucBAAGQAakBrQIAAf8BMwMA
+        AWYDAAGZAwABzAIAATMDAAIzAgABMwFmAgABMwGZAgABMwHMAgABMwH/AgABZgMAAWYBMwIAAmYCAAFm
+        AZkCAAFmAcwCAAFmAf8CAAGZAwABmQEzAgABmQFmAgACmQIAAZkBzAIAAZkB/wIAAcwDAAHMATMCAAHM
+        AWYCAAHMAZkCAALMAgABzAH/AgAB/wFmAgAB/wGZAgAB/wHMAQABMwH/AgAB/wEAATMBAAEzAQABZgEA
+        ATMBAAGZAQABMwEAAcwBAAEzAQAB/wEAAf8BMwIAAzMBAAIzAWYBAAIzAZkBAAIzAcwBAAIzAf8BAAEz
+        AWYCAAEzAWYBMwEAATMCZgEAATMBZgGZAQABMwFmAcwBAAEzAWYB/wEAATMBmQIAATMBmQEzAQABMwGZ
+        AWYBAAEzApkBAAEzAZkBzAEAATMBmQH/AQABMwHMAgABMwHMATMBAAEzAcwBZgEAATMBzAGZAQABMwLM
+        AQABMwHMAf8BAAEzAf8BMwEAATMB/wFmAQABMwH/AZkBAAEzAf8BzAEAATMC/wEAAWYDAAFmAQABMwEA
+        AWYBAAFmAQABZgEAAZkBAAFmAQABzAEAAWYBAAH/AQABZgEzAgABZgIzAQABZgEzAWYBAAFmATMBmQEA
+        AWYBMwHMAQABZgEzAf8BAAJmAgACZgEzAQADZgEAAmYBmQEAAmYBzAEAAWYBmQIAAWYBmQEzAQABZgGZ
+        AWYBAAFmApkBAAFmAZkBzAEAAWYBmQH/AQABZgHMAgABZgHMATMBAAFmAcwBmQEAAWYCzAEAAWYBzAH/
+        AQABZgH/AgABZgH/ATMBAAFmAf8BmQEAAWYB/wHMAQABzAEAAf8BAAH/AQABzAEAApkCAAGZATMBmQEA
+        AZkBAAGZAQABmQEAAcwBAAGZAwABmQIzAQABmQEAAWYBAAGZATMBzAEAAZkBAAH/AQABmQFmAgABmQFm
+        ATMBAAGZATMBZgEAAZkBZgGZAQABmQFmAcwBAAGZATMB/wEAApkBMwEAApkBZgEAA5kBAAKZAcwBAAKZ
+        Af8BAAGZAcwCAAGZAcwBMwEAAWYBzAFmAQABmQHMAZkBAAGZAswBAAGZAcwB/wEAAZkB/wIAAZkB/wEz
+        AQABmQHMAWYBAAGZAf8BmQEAAZkB/wHMAQABmQL/AQABzAMAAZkBAAEzAQABzAEAAWYBAAHMAQABmQEA
+        AcwBAAHMAQABmQEzAgABzAIzAQABzAEzAWYBAAHMATMBmQEAAcwBMwHMAQABzAEzAf8BAAHMAWYCAAHM
+        AWYBMwEAAZkCZgEAAcwBZgGZAQABzAFmAcwBAAGZAWYB/wEAAcwBmQIAAcwBmQEzAQABzAGZAWYBAAHM
+        ApkBAAHMAZkBzAEAAcwBmQH/AQACzAIAAswBMwEAAswBZgEAAswBmQEAA8wBAALMAf8BAAHMAf8CAAHM
+        Af8BMwEAAZkB/wFmAQABzAH/AZkBAAHMAf8BzAEAAcwC/wEAAcwBAAEzAQAB/wEAAWYBAAH/AQABmQEA
+        AcwBMwIAAf8CMwEAAf8BMwFmAQAB/wEzAZkBAAH/ATMBzAEAAf8BMwH/AQAB/wFmAgAB/wFmATMBAAHM
+        AmYBAAH/AWYBmQEAAf8BZgHMAQABzAFmAf8BAAH/AZkCAAH/AZkBMwEAAf8BmQFmAQAB/wKZAQAB/wGZ
+        AcwBAAH/AZkB/wEAAf8BzAIAAf8BzAEzAQAB/wHMAWYBAAH/AcwBmQEAAf8CzAEAAf8BzAH/AQAC/wEz
+        AQABzAH/AWYBAAL/AZkBAAL/AcwBAAJmAf8BAAFmAf8BZgEAAWYC/wEAAf8CZgEAAf8BZgH/AQAC/wFm
+        AQABIQEAAaUBAANfAQADdwEAA4YBAAOWAQADywEAA7IBAAPXAQAD3QEAA+MBAAPqAQAD8QEAA/gBAAHw
+        AfsB/wEAAaQCoAEAA4ADAAH/AgAB/wMAAv8BAAH/AwAB/wEAAf8BAAL/AgAD/wEAEP8wAAH/AfMMvAHz
+        Ef8hAAHxAfAK8gHwAfEBAAGZDnQBmSEAAfAM8gHwAQABdA6aAXQhAAHwDPIB8AEAAZkBmgx6AZoBmSEA
+        AfEM8gHxAQABmQ6aAZkhAAHxAfML8gHxAQABmQ6aAZkhAAHxAfML8gHxAQABmQ6aAZkhAAHxA/MJ8gHx
+        AQABmQ6aAZkhAAHyBvMH8gEAAZkOmgGZIQAB8gH0CvMB9AHyAQABGgGgBpoHoAEaIQAB8gH0CvMB9AHy
+        AQABGgGgBZoBoAGZBnkBGiEAAfIB9ArzAfQB8gEAARoGoAKaBqABGiEAAfMB8gr0AfIB8wEAARsHGgL/
+        AfQB8wLaARoBGyEAAf8B8wryAfMB/wgAAfQGGgH0YQABQgFNAT4HAAE+AwABKAMAAUADAAEQAwABAQEA
+        AQEFAAGAFwAD/wMAAv8MAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGA
+        AQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEGAAGAAQEB/gEBBAAE/wQACw==
+</value>
+  </data>
+  <data name="lstItems.Location" type="System.Drawing.Point, System.Drawing">
+    <value>13, 13</value>
+  </data>
+  <data name="lstItems.Size" type="System.Drawing.Size, System.Drawing">
+    <value>259, 208</value>
+  </data>
+  <data name="lstItems.TabIndex" type="System.Int32, mscorlib">
+    <value>1</value>
+  </data>
+  <data name=">>lstItems.Name" xml:space="preserve">
+    <value>lstItems</value>
+  </data>
+  <data name=">>lstItems.Type" xml:space="preserve">
+    <value>System.Windows.Forms.ListView, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </data>
+  <data name=">>lstItems.Parent" xml:space="preserve">
+    <value>$this</value>
+  </data>
+  <data name=">>lstItems.ZOrder" xml:space="preserve">
+    <value>0</value>
+  </data>
+  <metadata name="$this.Localizable" type="System.Boolean, mscorlib, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089">
+    <value>True</value>
+  </metadata>
+  <data name="$this.AutoScaleDimensions" type="System.Drawing.SizeF, System.Drawing">
+    <value>6, 13</value>
+  </data>
+  <data name="$this.ClientSize" type="System.Drawing.Size, System.Drawing">
+    <value>284, 262</value>
+  </data>
+  <data name="$this.Text" xml:space="preserve">
+    <value>Selected Items</value>
+  </data>
+  <data name=">>imageList.Name" xml:space="preserve">
+    <value>imageList</value>
+  </data>
+  <data name=">>imageList.Type" xml:space="preserve">
+    <value>System.Windows.Forms.ImageList, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </data>
+  <data name=">>$this.Name" xml:space="preserve">
+    <value>SelectedItemsDialog</value>
+  </data>
+  <data name=">>$this.Type" xml:space="preserve">
+    <value>System.Windows.Forms.Form, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
+  </data>
+</root>
\ No newline at end of file



More information about the mapguide-commits mailing list