public override void Draw(BrightIdeasSoftware.ObjectListView olv, Graphics g, Rectangle r)
        {
            Rectangle cellBounds = this.CellBounds;

            CellBounds.Inflate(-this.CellPadding.Width, -this.CellPadding.Width); //Does what?
            Rectangle textBounds = cellBounds;

            // Draw title
            using (StringFormat format = new StringFormat(StringFormatFlags.NoWrap))
            {
                format.Trimming      = StringTrimming.EllipsisCharacter; //Text is trimmed to the nearest character and ... appended
                format.Alignment     = StringAlignment.Near;
                format.LineAlignment = StringAlignment.Near;
                using (SolidBrush b = new SolidBrush(this.TitleColor))
                {
                    g.DrawString(this.Title, this.TitleFont, b, textBounds, format);
                }
                // Draw description
                SizeF size = g.MeasureString(this.Title, this.TitleFont, (int)textBounds.Width, format);
                textBounds.Y      += (int)size.Height;
                textBounds.Height -= (int)size.Height;
            }

            // Draw description
            using (StringFormat format2 = new StringFormat())
            {
                format2.Trimming = StringTrimming.EllipsisCharacter;
                using (SolidBrush b = new SolidBrush(this.DescriptionColor))
                {
                    g.DrawString(this.Description, this.DescriptionFont, b, textBounds, format2);
                }
            }
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerID); };
            }
            else
            {
                switch (column.Name)
                {
                case "manufacturerName":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerName); };
                    break;

                case "manufacturerTel":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerTel); };
                    break;

                case "manufacturerAdd":
                    column.AspectGetter = delegate(object x) { return(((Manufacturer)x).manufacturerAdd); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Exemple #3
0
 public ObjectListViewUpdaterTask(BrightIdeasSoftware.ObjectListView listView)
 {
     ObjectListView = listView;
     Lock           = new object();
     UpdateList     = new List <object>();
     Task           = Run();
 }
Exemple #4
0
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).ID); };
            }
            else
            {
                switch (column.Name)
                {
                case "s_cqcs":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_cqcs); };
                    break;

                case "s_csmc":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_csmc); };
                    break;

                case "s_date":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_date.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "s_jlr":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_jlr); };
                    break;

                case "s_sd":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sd); };
                    break;

                case "s_sded":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sded); };
                    break;

                case "s_sworxw":
                    column.AspectGetter = delegate(object x) { return(GetTimeStrByState((int)((CunChuInfo)x).s_sworxw)); };
                    break;

                case "s_sywdfw":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_sywdfw); };
                    break;

                case "s_syxdsdfw":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_syxdsdfw); };
                    break;

                case "s_wd":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_wd); };
                    break;

                case "s_wded":
                    column.AspectGetter = delegate(object x) { return(((CunChuInfo)x).s_wded); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Exemple #5
0
        private static void AutosizeColumns([NotNull] BrightIdeasSoftware.ObjectListView olv)
        {
            foreach (ColumnHeader col in olv.Columns)
            {
                //auto resize column width

                int colWidthBeforeAutoResize = col.Width;
                col.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
                int colWidthAfterAutoResizeByHeader = col.Width;
                col.AutoResize(ColumnHeaderAutoResizeStyle.ColumnContent);
                int colWidthAfterAutoResizeByContent = col.Width;

                if (colWidthAfterAutoResizeByHeader > colWidthAfterAutoResizeByContent)
                {
                    col.AutoResize(ColumnHeaderAutoResizeStyle.HeaderSize);
                }

                //specific adjusts

                //first column
                if (col.Index == 0)
                //we have to manually take care of tree structure, checkbox and image
                {
                    col.Width += 16 + 16 + olv.SmallImageSize.Width;
                }
                //last column
                else if (col.Index == olv.Columns.Count - 1)
                //avoid "fill free space" bug
                {
                    col.Width = colWidthBeforeAutoResize > colWidthAfterAutoResizeByContent ? colWidthBeforeAutoResize : colWidthAfterAutoResizeByContent;
                }
            }
        }
Exemple #6
0
 private void EnsureSelectionVisible(BrightIdeasSoftware.ObjectListView listView)
 {
     if (listView.SelectedIndices.Count > 0)
     {
         listView.TopItemIndex = listView.SelectedIndices[0];
     }
 }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessID); };
            }
            else
            {
                switch (column.Name)
                {
                case "ProcessContentInquired":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessContentInquired); };
                    break;

                case "ProcessCustomerUnit":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessCustomerUnit); };
                    break;

                case "ProcessDate":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "ProcessHandlingSuggestion":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessHandlingSuggestion); };
                    break;

                case "Processlinkman":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).Processlinkman); };
                    break;

                case "ProcessProductName":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessProductName); };
                    break;

                case "ProcessPurchasingDate":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessPurchasingDate.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "ProcessServiceUser":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessServiceUser); };
                    break;

                case "ProcessStandard":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).ProcessStandard); };
                    break;

                case "Processtel":
                    column.AspectGetter = delegate(object x) { return(((ProcessLoggingInfo)x).Processtel); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        /// <summary>
        /// Crée un formulaire permettant d'ajouter un tireur
        /// </summary>
        /// <param name="pParent">Formulaire principal</param>
        public FrmAjouterTireur(BrightIdeasSoftware.ObjectListView pOlvParent)
        {
            InitializeComponent();
            dtpDateDeNaissance.Value   = System.DateTime.Today.AddYears(-15);
            dtpDateDeNaissance.MaxDate = System.DateTime.Today;

            txtNom.SelectAll();

            olvParent = pOlvParent;
        }
        public static void initActionListView(BrightIdeasSoftware.ObjectListView olv)
        {
            List <classes.ActionItem> actions = new List <classes.ActionItem>();

            actions.Add(new classes.ActionItem("Stock", classes.ActionItem.Action.STOCK));
            actions.Add(new classes.ActionItem("Transactions", classes.ActionItem.Action.TRANSACTIONS));
            actions.Add(new classes.ActionItem("Clients", classes.ActionItem.Action.CLIENTS));
            actions.Add(new classes.ActionItem("Items", classes.ActionItem.Action.ITEMS));
            olv.SetObjects(actions);
        }
        public FrmClassementEquipe(BrightIdeasSoftware.ObjectListView pOlvTireur, ListeEquipe pColEquipe)
        {
            InitializeComponent();
            OlvFormatage();

            m_olvTireur = pOlvTireur;
            m_colEquipe = pColEquipe;

            olvClassement.Objects = m_colEquipe;
        }
Exemple #11
0
        /// <summary>
        /// Finds and select an item in the objectlistview according to single property of pointed type
        /// </summary>
        /// <typeparam name="T">Object model type which contains the property</typeparam>
        /// <typeparam name="T1">Property type to compare with record identyfier</typeparam>
        /// <param name="recordID">Record identyfier to compare with the property name</param>
        /// <param name="propertyName">Name of property which should be found in the object model type</param>
        /// <param name="olv">ObjectListView which owns the record and the object model</param>
        public static void SetListItem <T, T1>(T1 recordID, string propertyName, BrightIdeasSoftware.ObjectListView olv)
        {
            var Item = ((ISet <T>)olv.Objects).Where(x => ((T1)x.GetType().GetProperty(propertyName).GetValue(x)).Equals(recordID)).FirstOrDefault();

            if (Item == null)
            {
                return;
            }
            olv.SelectObject(Item);
            olv.SelectedItem.EnsureVisible();
        }
Exemple #12
0
 public TaskManager(Label label, BlockProgressBar progressBar)
 {
     listView         = Globals.Forms.TasksForm.tasksListView;
     tasksLabel       = label;
     this.progressBar = progressBar;
     incomingTasks    = new ConcurrentDeque <BackgroundTask>();
     allTasks         = new ConcurrentDeque <BackgroundTask>();
     completedTasks   = new List <BackgroundTask>();
     activeTasks      = new List <BackgroundTask>();
     RunWorkerAsync();
 }
Exemple #13
0
 protected void AddSavedObjectListViewColumns(BrightIdeasSoftware.ObjectListView objectListView)
 {
     _columnListViews.Add(objectListView);
     foreach (ColumnHeader column in objectListView.Columns)
     {
         var name = "Column:" + objectListView.Name + ":" + column.Text;
         _columnListViewDefaults[name] = column.Width;
     }
     if (_initialised)
     {
         LoadObjectListViewColumns(objectListView);
     }
 }
        /// <summary>
        /// Crée un formulaire permettant d'éditer un tireur
        /// </summary>
        /// <param name="pParent">Formulaire principal</param>
        /// <param name="pTireur">Tireur à éditer</param>
        public FrmAjouterTireur(BrightIdeasSoftware.ObjectListView pOlvParent, Tireur pTireur)
        {
            InitializeComponent();

            txtNom.Text = pTireur.Nom;
            dtpDateDeNaissance.Value = pTireur.DateDeNaissance;

            olvParent = pOlvParent;
            m_tireur  = pTireur;

            this.Text       = "Modifier un tireur";
            btnAjouter.Text = "Modifier";
        }
        /// <summary>
        /// Crée un formulaire pour modifier les équipes
        /// </summary>
        /// <param name="pColTireurs">Collection de tous les tireurs</param>
        /// <param name="pColEquipe">Collection de toutes les équipes</param>
        public FrmEquipe(BrightIdeasSoftware.ObjectListView PolvPrincipal, ListeTireur pColTireurs, ListeEquipe pColEquipe)
        {
            InitializeComponent();

            m_olvPrincipal = PolvPrincipal;

            m_colTireur = pColTireurs;
            m_colEquipe = pColEquipe;

            OlvFormatage();

            AfficherTireurs();
            AfficherEquipes();
        }
        /// <summary>
        /// Crée un nouveau formulaire affichant les infos d'un tireur
        /// </summary>
        /// <param name="pTireur">Tireur à afficher</param>
        public FrmTireur(Tireur pTireur, BrightIdeasSoftware.ObjectListView pOlvTireur)
        {
            InitializeComponent();

            m_olvTireur = pOlvTireur;
            m_tireur    = pTireur;

            this.Text               = m_tireur.Nom;
            lblNom.Text             = m_tireur.Nom;
            lblDateDeNaissance.Text = m_tireur.DateDeNaissance.ToString("d MMMM yyyy", new CultureInfo("fr-FR"));

            SetOlvDelegates();
            olvCibleGrouping.SetObjects(m_tireur.ColCibleGrouping);
            olvCiblePrecision.SetObjects(m_tireur.ColCiblePrecision);

            UpdateInfosGrouping();
            UpdateInfosPrecision();
        }
            public override void Draw(BrightIdeasSoftware.ObjectListView olv, Graphics g, Rectangle r)
            {
                Rectangle cellBounds = this.CellBounds;

                cellBounds.Inflate(-this.CellPadding.Width, -this.CellPadding.Height);
                Rectangle textBounds = cellBounds;

                if (this.ImageList != null && !String.IsNullOrEmpty(this.ImageName))
                {
                    g.DrawImage(this.ImageList.Images[this.ImageName], cellBounds.Location);
                    textBounds.X     += this.ImageList.ImageSize.Width;
                    textBounds.Width -= this.ImageList.ImageSize.Width;
                }

                //g.DrawRectangle(Pens.Red, textBounds);

                // Draw the title
                StringFormat fmt = new StringFormat(StringFormatFlags.NoWrap);

                fmt.Trimming      = StringTrimming.EllipsisCharacter;
                fmt.Alignment     = StringAlignment.Near;
                fmt.LineAlignment = StringAlignment.Near;
                Font titleFont = new Font("Segoe UI Semilight", titleSize, FontStyle.Bold);

                using (SolidBrush b = new SolidBrush(this.TitleColor))
                {
                    g.DrawString(this.Title, titleFont, b, textBounds, fmt);
                }

                // Draw the description
                SizeF size = g.MeasureString(this.Title, titleFont, (int)textBounds.Width, fmt);

                textBounds.Y      += (int)size.Height;
                textBounds.Height -= (int)size.Height;
                StringFormat fmt2 = new StringFormat();

                fmt2.Trimming = StringTrimming.EllipsisCharacter;
                Font descriptionFont = new Font("Segoe UI Semilight", descriptionSize);

                using (SolidBrush b = new SolidBrush(this.DescriptionColor))
                {
                    g.DrawString(this.Description, descriptionFont, b, textBounds, fmt2);
                }
            }
Exemple #18
0
 public void CopyAIObject <T>(string title, T selected, AITable <T> aitable, BrightIdeasSoftware.ObjectListView olv)
     where T : class, IAIObject
 {
     if (selected == null)
     {
         return;
     }
     InputBox.InputResult res = InputBox.Show(title, "Enter name:", selected.Name);
     if (res.ReturnCode == DialogResult.OK)
     {
         T newai = selected.Copy(nextID(), res.Text) as T;
         aitable.Add(newai);
         olv.BeginUpdate();
         olv.AddObject(newai);
         olv.EndUpdate();
         olv.SelectedObject = newai;
         olv.EnsureVisible();
     }
 }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((DeviceInfo)x).DeviceID); };
            }
            else
            {
                switch (column.Name)
                {
                case "DeviceType":
                    column.AspectGetter = delegate(object x) { return(((DeviceInfo)x).DeviceType); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        /// <summary>
        /// Crée une nouvelle fenêtre pour ajouter une cible
        /// </summary>
        /// <param name="pTypeCible">Type de cible à ajouter</param>
        /// <param name="pTireur">Tireur de la cible</param>
        /// <param name="pOlvTireur">Collection de tireur</param>
        public FrmAjouterCible(enuTypeCible pTypeCible, Tireur pTireur, BrightIdeasSoftware.ObjectListView pOlvTireur)
        {
            InitializeComponent();
            dtpDateTir.MaxDate = System.DateTime.Now;
            dtpDateTir.Value   = System.DateTime.Now.AddMilliseconds(-1);

            m_olvTireur = pOlvTireur;

            m_tireur    = pTireur;
            m_typeCible = pTypeCible;

            numScore.Select();
            numScore.Select(0, numScore.Text.Length);

            if (m_typeCible == enuTypeCible.Precision)
            {
                this.Text        = "Cible de précision";
                numScore.Maximum = 100;
                numScore.Minimum = 0;
            }
        }
Exemple #21
0
        private void LoadObjectListViewColumns(BrightIdeasSoftware.ObjectListView objectListView)
        {
            foreach (ColumnHeader column in objectListView.Columns)
            {
                var name = "Column:" + objectListView.Name + ":" + column.Text;
                int val;
                if (_settings.ExtraPosition.TryGetValue(name, out val))
                {
                    column.Width = val;
                }
            }

            objectListView.ColumnWidthChanged += (sender, e) =>
            {
                var column = objectListView.Columns[e.ColumnIndex];
                var name   = "Column:" + objectListView.Name + ":" + column.Text;
                if (column.Width != _columnListViewDefaults[name])
                {
                    _settings.ExtraPosition[name] = column.Width;
                    Settings.Save();
                }
            };
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((ProductInfo)x).productid); };
            }
            else
            {
                switch (column.Name)
                {
                case "productname":
                    column.AspectGetter = delegate(object x) { return(((ProductInfo)x).productname); };
                    break;

                case "promoney":
                    column.AspectGetter = delegate(object x) { return(((ProductInfo)x).promoney); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).SortNo); };
            }
            else
            {
                switch (column.Name)
                {
                case "BackDataFileName":
                    column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).BackDataFileName); };
                    break;

                case "DataBackTime":
                    column.AspectGetter = delegate(object x) { return(((UIModels.DataBaseBackInfo)x).DataBackTime); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).ID); };
            }
            else
            {
                switch (column.Name)
                {
                case "b_bgr":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_bgr); };
                    break;

                case "b_bgsj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_bgsj); };
                    break;

                case "b_cpdm":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_cpdm); };
                    break;

                case "b_fzr":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_fzr); };
                    break;

                case "b_fzrqz":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_fzrqz); };
                    break;

                case "b_fzrqzsj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_fzrqzsj); };
                    break;

                case "b_ggxh":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_ggxh); };
                    break;

                case "b_qyzgfzryj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_qyzgfzryj); };
                    break;

                case "b_resj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_resj); };
                    break;

                case "b_sccj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_sccj); };
                    break;

                case "b_scrq":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_scrq); };
                    break;

                case "b_sl":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_sl); };
                    break;

                case "b_sydw":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_sydw); };
                    break;

                case "b_sydwyj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_sydwyj); };
                    break;

                case "b_ylqxmc":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_ylqxmc); };
                    break;

                case "b_zgclqk":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_zgclqk); };
                    break;

                case "b_zgjbr":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_zgjbr); };
                    break;

                case "b_zgjbsj":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_zgjbsj.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "b_zlsgqk":
                    column.AspectGetter = delegate(object x) { return(((BuLiangShiJianInfo)x).b_zlsgqk); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
        /// <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.flowMenu = new System.Windows.Forms.FlowLayoutPanel();
            this.btnInstall = new System.Windows.Forms.Button();
            this.chkShowOffline = new System.Windows.Forms.CheckBox();
            this.lstGames = new BrightIdeasSoftware.ObjectListView();
            this.olvName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvPlayers = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn2 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn3 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn4 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvPing = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvInstallPath = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.olvColumn5 = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.statusBar = new System.Windows.Forms.StatusStrip();
            this.statusBarLabel = new System.Windows.Forms.ToolStripStatusLabel();
            this.btnRefresh = new System.Windows.Forms.Button();
            this.linkFoDev = new System.Windows.Forms.LinkLabel();
            this.chkPing = new System.Windows.Forms.CheckBox();
            this.frmMainBindingSource = new System.Windows.Forms.BindingSource(this.components);
            this.flowMenu.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.lstGames)).BeginInit();
            this.statusBar.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frmMainBindingSource)).BeginInit();
            this.SuspendLayout();
            // 
            // flowMenu
            // 
            this.flowMenu.Controls.Add(this.btnInstall);
            this.flowMenu.Location = new System.Drawing.Point(5, 12);
            this.flowMenu.Name = "flowMenu";
            this.flowMenu.Size = new System.Drawing.Size(119, 389);
            this.flowMenu.TabIndex = 6;
            // 
            // btnInstall
            // 
            this.btnInstall.Enabled = false;
            this.btnInstall.Location = new System.Drawing.Point(3, 3);
            this.btnInstall.Name = "btnInstall";
            this.btnInstall.Size = new System.Drawing.Size(103, 28);
            this.btnInstall.TabIndex = 8;
            this.btnInstall.Text = "Install/Add";
            this.btnInstall.UseVisualStyleBackColor = true;
            // 
            // chkShowOffline
            // 
            this.chkShowOffline.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkShowOffline.AutoSize = true;
            this.chkShowOffline.Location = new System.Drawing.Point(715, 97);
            this.chkShowOffline.Name = "chkShowOffline";
            this.chkShowOffline.Size = new System.Drawing.Size(125, 17);
            this.chkShowOffline.TabIndex = 8;
            this.chkShowOffline.Text = "Show Offline Servers";
            this.chkShowOffline.UseVisualStyleBackColor = true;
            // 
            // lstGames
            // 
            this.lstGames.AllColumns.Add(this.olvName);
            this.lstGames.AllColumns.Add(this.olvPlayers);
            this.lstGames.AllColumns.Add(this.olvColumn2);
            this.lstGames.AllColumns.Add(this.olvColumn3);
            this.lstGames.AllColumns.Add(this.olvColumn4);
            this.lstGames.AllColumns.Add(this.olvPing);
            this.lstGames.AllColumns.Add(this.olvInstallPath);
            this.lstGames.AllColumns.Add(this.olvColumn5);
            this.lstGames.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.lstGames.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.olvName,
            this.olvPlayers,
            this.olvColumn2,
            this.olvColumn3,
            this.olvColumn4,
            this.olvPing,
            this.olvInstallPath,
            this.olvColumn5});
            this.lstGames.Cursor = System.Windows.Forms.Cursors.Default;
            this.lstGames.FullRowSelect = true;
            this.lstGames.HasCollapsibleGroups = false;
            this.lstGames.Location = new System.Drawing.Point(130, 12);
            this.lstGames.Name = "lstGames";
            this.lstGames.ShowGroups = false;
            this.lstGames.Size = new System.Drawing.Size(579, 389);
            this.lstGames.TabIndex = 7;
            this.lstGames.UseCompatibleStateImageBehavior = false;
            this.lstGames.UseHyperlinks = true;
            this.lstGames.View = System.Windows.Forms.View.Details;
            // 
            // olvName
            // 
            this.olvName.AspectName = "Name";
            this.olvName.Text = "Name";
            this.olvName.Width = 100;
            // 
            // olvPlayers
            // 
            this.olvPlayers.AspectName = "Status";
            this.olvPlayers.Text = "Players";
            // 
            // olvColumn2
            // 
            this.olvColumn2.AspectName = "Website";
            this.olvColumn2.Hyperlink = true;
            this.olvColumn2.Text = "Website";
            this.olvColumn2.Width = 120;
            // 
            // olvColumn3
            // 
            this.olvColumn3.AspectName = "Host";
            this.olvColumn3.Text = "Host";
            this.olvColumn3.Width = 120;
            // 
            // olvColumn4
            // 
            this.olvColumn4.AspectName = "Port";
            this.olvColumn4.Text = "Port";
            // 
            // olvPing
            // 
            this.olvPing.AspectName = "Status.Latency";
            this.olvPing.Text = "Ping";
            // 
            // olvInstallPath
            // 
            this.olvInstallPath.AspectName = "InstallPath";
            this.olvInstallPath.Text = "Install Path";
            // 
            // olvColumn5
            // 
            this.olvColumn5.AspectName = "Source";
            this.olvColumn5.Hyperlink = true;
            this.olvColumn5.Text = "Source Code";
            // 
            // statusBar
            // 
            this.statusBar.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
            this.statusBarLabel});
            this.statusBar.Location = new System.Drawing.Point(0, 404);
            this.statusBar.Name = "statusBar";
            this.statusBar.Size = new System.Drawing.Size(836, 22);
            this.statusBar.TabIndex = 9;
            this.statusBar.Text = "statusStrip1";
            // 
            // statusBarLabel
            // 
            this.statusBarLabel.Name = "statusBarLabel";
            this.statusBarLabel.Size = new System.Drawing.Size(0, 17);
            // 
            // btnRefresh
            // 
            this.btnRefresh.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnRefresh.Location = new System.Drawing.Point(715, 35);
            this.btnRefresh.Name = "btnRefresh";
            this.btnRefresh.Size = new System.Drawing.Size(116, 33);
            this.btnRefresh.TabIndex = 10;
            this.btnRefresh.Text = "Update list";
            this.btnRefresh.UseVisualStyleBackColor = true;
            // 
            // linkFoDev
            // 
            this.linkFoDev.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.linkFoDev.AutoSize = true;
            this.linkFoDev.Location = new System.Drawing.Point(715, 12);
            this.linkFoDev.Name = "linkFoDev";
            this.linkFoDev.Size = new System.Drawing.Size(83, 13);
            this.linkFoDev.TabIndex = 14;
            this.linkFoDev.TabStop = true;
            this.linkFoDev.Text = "http://fodev.net";
            // 
            // chkPing
            // 
            this.chkPing.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.chkPing.AutoSize = true;
            this.chkPing.Location = new System.Drawing.Point(715, 74);
            this.chkPing.Name = "chkPing";
            this.chkPing.Size = new System.Drawing.Size(86, 17);
            this.chkPing.TabIndex = 15;
            this.chkPing.Text = "Ping Servers";
            this.chkPing.UseVisualStyleBackColor = true;
            // 
            // frmMainBindingSource
            // 
            this.frmMainBindingSource.DataSource = typeof(PlayFOnline.frmMain);
            // 
            // frmMain
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(836, 426);
            this.Controls.Add(this.chkPing);
            this.Controls.Add(this.linkFoDev);
            this.Controls.Add(this.btnRefresh);
            this.Controls.Add(this.statusBar);
            this.Controls.Add(this.chkShowOffline);
            this.Controls.Add(this.lstGames);
            this.Controls.Add(this.flowMenu);
            this.MinimumSize = new System.Drawing.Size(460, 250);
            this.Name = "frmMain";
            this.Text = "Play FOnline [Version]";
            this.flowMenu.ResumeLayout(false);
            ((System.ComponentModel.ISupportInitialize)(this.lstGames)).EndInit();
            this.statusBar.ResumeLayout(false);
            this.statusBar.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(this.frmMainBindingSource)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();

        }
 void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     //System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Positions));
     //this.tradeTypes = new System.Windows.Forms.ImageList(this.components);
     this.olvPositions        = new BrightIdeasSoftware.ObjectListView();
     this.olvcPosition        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcSerno           = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcSymbol          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcQuantity        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcEntryDate       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcEntryPrice      = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcEntryOrder      = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcExitDate        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcExitPrice       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcExitOrder       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcProfitPct       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcProfitDollar    = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcBarsHeld        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcProfitPerBar    = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcEntrySignalName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcExitSignalName  = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcMaePct          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcMfePct          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcCumProfitPct    = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcCumProfitDollar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.olvcComission       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
     this.ctxPopup            = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.mniShowEntriesExits = new System.Windows.Forms.ToolStripMenuItem();
     this.mniShowPercentage   = new System.Windows.Forms.ToolStripMenuItem();
     this.mniShowBarsHeld     = new System.Windows.Forms.ToolStripMenuItem();
     this.mniShowMaeMfe       = new System.Windows.Forms.ToolStripMenuItem();
     this.mniShowSignals      = new System.Windows.Forms.ToolStripMenuItem();
     this.mniShowCommission   = new System.Windows.Forms.ToolStripMenuItem();
     this.mniColorify         = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
     this.mniCopyToClipboard  = new System.Windows.Forms.ToolStripMenuItem();
     this.mniSaveToFile       = new System.Windows.Forms.ToolStripMenuItem();
     ((System.ComponentModel.ISupportInitialize)(this.olvPositions)).BeginInit();
     this.ctxPopup.SuspendLayout();
     this.SuspendLayout();
     //
     // tradeTypes
     //
     //this.tradeTypes.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("tradeTypes.ImageStream")));
     //this.tradeTypes.TransparentColor = System.Drawing.Color.Transparent;
     //this.tradeTypes.Images.SetKeyName(0, "45degrees3-LongEntryUnknown.png");
     //this.tradeTypes.Images.SetKeyName(1, "45degrees3-LongEntryProfit.png");
     //this.tradeTypes.Images.SetKeyName(2, "45degrees3-LongEntryLoss.png");
     //this.tradeTypes.Images.SetKeyName(3, "45degrees3-ShortEntryUnknown.png");
     //this.tradeTypes.Images.SetKeyName(4, "45degrees3-ShortEntryProfit.png");
     //this.tradeTypes.Images.SetKeyName(5, "45degrees3-ShortEntryLoss.png");
     //
     // olvPositions
     //
     this.olvPositions.BackColor   = System.Drawing.SystemColors.Window;
     this.olvPositions.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.olvPositions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.olvcPosition,
         this.olvcSerno,
         this.olvcSymbol,
         this.olvcQuantity,
         this.olvcEntryDate,
         this.olvcEntryPrice,
         this.olvcEntryOrder,
         this.olvcExitDate,
         this.olvcExitPrice,
         this.olvcExitOrder,
         this.olvcProfitPct,
         this.olvcProfitDollar,
         this.olvcBarsHeld,
         this.olvcProfitPerBar,
         this.olvcEntrySignalName,
         this.olvcExitSignalName,
         this.olvcMaePct,
         this.olvcMfePct,
         this.olvcCumProfitPct,
         this.olvcCumProfitDollar,
         this.olvcComission
     });
     this.olvPositions.AllColumns.Add(this.olvcPosition);
     this.olvPositions.AllColumns.Add(this.olvcSerno);
     this.olvPositions.AllColumns.Add(this.olvcSymbol);
     this.olvPositions.AllColumns.Add(this.olvcQuantity);
     this.olvPositions.AllColumns.Add(this.olvcEntryDate);
     this.olvPositions.AllColumns.Add(this.olvcEntryPrice);
     this.olvPositions.AllColumns.Add(this.olvcEntryOrder);
     this.olvPositions.AllColumns.Add(this.olvcExitDate);
     this.olvPositions.AllColumns.Add(this.olvcExitPrice);
     this.olvPositions.AllColumns.Add(this.olvcExitOrder);
     this.olvPositions.AllColumns.Add(this.olvcProfitPct);
     this.olvPositions.AllColumns.Add(this.olvcProfitDollar);
     this.olvPositions.AllColumns.Add(this.olvcBarsHeld);
     this.olvPositions.AllColumns.Add(this.olvcProfitPerBar);
     this.olvPositions.AllColumns.Add(this.olvcEntrySignalName);
     this.olvPositions.AllColumns.Add(this.olvcExitSignalName);
     this.olvPositions.AllColumns.Add(this.olvcMaePct);
     this.olvPositions.AllColumns.Add(this.olvcMfePct);
     this.olvPositions.AllColumns.Add(this.olvcCumProfitPct);
     this.olvPositions.AllColumns.Add(this.olvcCumProfitDollar);
     this.olvPositions.AllColumns.Add(this.olvcComission);
     this.olvPositions.ContextMenuStrip                  = this.ctxPopup;
     this.olvPositions.Dock                              = System.Windows.Forms.DockStyle.Fill;
     this.olvPositions.Font                              = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.olvPositions.FullRowSelect                     = true;
     this.olvPositions.HeaderUsesThemes                  = false;
     this.olvPositions.HideSelection                     = false;
     this.olvPositions.Location                          = new System.Drawing.Point(0, 0);
     this.olvPositions.MultiSelect                       = false;
     this.olvPositions.ShowCommandMenuOnRightClick       = true;
     this.olvPositions.ShowGroups                        = false;
     this.olvPositions.TintSortColumn                    = true;
     this.olvPositions.UnfocusedHighlightBackgroundColor = System.Drawing.SystemColors.GradientActiveCaption;
     this.olvPositions.UseCompatibleStateImageBehavior   = false;
     this.olvPositions.UseFilterIndicator                = true;
     this.olvPositions.UseFiltering                      = true;
     this.olvPositions.UseHotItem                        = true;
     this.olvPositions.UseTranslucentHotItem             = true;
     this.olvPositions.Name                              = "olvPositions";
     this.olvPositions.Size                              = new System.Drawing.Size(905, 303);
     //this.olvPositions.SmallImageList = this.tradeTypes;
     this.olvPositions.TabIndex = 0;
     this.olvPositions.UseCompatibleStateImageBehavior = false;
     this.olvPositions.View         = System.Windows.Forms.View.Details;
     this.olvPositions.DoubleClick += new System.EventHandler(this.olvPositions_DoubleClick);
     //
     // olvcPosition
     //
     this.olvcPosition.CellPadding = null;
     this.olvcPosition.Text        = "Position";
     this.olvcPosition.Width       = 50;
     //
     // olvcSerno
     //
     this.olvcSerno.CellPadding     = null;
     this.olvcSerno.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcSerno.Text            = "Serno";
     this.olvcSerno.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcSerno.Width           = 40;
     //
     // olvcSymbol
     //
     this.olvcSymbol.CellPadding = null;
     this.olvcSymbol.Text        = "Symbol";
     this.olvcSymbol.Width       = 20;
     //
     // olvcQuantity
     //
     this.olvcQuantity.CellPadding     = null;
     this.olvcQuantity.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcQuantity.Text            = "Shares";
     this.olvcQuantity.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcQuantity.Width           = 19;
     //
     // olvcEntryDate
     //
     this.olvcEntryDate.CellPadding     = null;
     this.olvcEntryDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcEntryDate.Text            = "Entry Date";
     this.olvcEntryDate.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcEntryDate.Width           = 110;
     //
     // olvcEntryPrice
     //
     this.olvcEntryPrice.CellPadding     = null;
     this.olvcEntryPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcEntryPrice.Text            = "Entry Price";
     this.olvcEntryPrice.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcEntryPrice.Width           = 70;
     //
     // olvcEntryOrder
     //
     this.olvcEntryOrder.CellPadding = null;
     this.olvcEntryOrder.Text        = "EntryOrder";
     this.olvcEntryOrder.Width       = 50;
     //
     // olvcExitDate
     //
     this.olvcExitDate.CellPadding     = null;
     this.olvcExitDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcExitDate.Text            = "Exit Date";
     this.olvcExitDate.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcExitDate.Width           = 110;
     //
     // olvcExitPrice
     //
     this.olvcExitPrice.CellPadding     = null;
     this.olvcExitPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcExitPrice.Text            = "Exit Price";
     this.olvcExitPrice.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcExitPrice.Width           = 70;
     //
     // olvcExitOrder
     //
     this.olvcExitOrder.CellPadding = null;
     this.olvcExitOrder.Text        = "ExitOrder";
     this.olvcExitOrder.Width       = 50;
     //
     // olvcProfitPct
     //
     this.olvcProfitPct.CellPadding     = null;
     this.olvcProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitPct.Text            = "Profit %";
     this.olvcProfitPct.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitPct.Width           = 36;
     //
     // olvcProfitDollar
     //
     this.olvcProfitDollar.CellPadding     = null;
     this.olvcProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitDollar.Text            = "Profit $";
     this.olvcProfitDollar.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitDollar.Width           = 69;
     //
     // olvcBarsHeld
     //
     this.olvcBarsHeld.CellPadding     = null;
     this.olvcBarsHeld.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcBarsHeld.Text            = "Bars Held";
     this.olvcBarsHeld.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcBarsHeld.Width           = 31;
     //
     // olvcProfitPerBar
     //
     this.olvcProfitPerBar.CellPadding     = null;
     this.olvcProfitPerBar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitPerBar.Text            = "Profit per Bar";
     this.olvcProfitPerBar.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcProfitPerBar.Width           = 60;
     //
     // olvcEntrySignalName
     //
     this.olvcEntrySignalName.CellPadding = null;
     this.olvcEntrySignalName.Text        = "Entry Signal";
     this.olvcEntrySignalName.Width       = 70;
     //
     // olvcExitSignalName
     //
     this.olvcExitSignalName.CellPadding = null;
     this.olvcExitSignalName.Text        = "Exit Signal";
     this.olvcExitSignalName.Width       = 70;
     //
     // olvcMaePct
     //
     this.olvcMaePct.CellPadding     = null;
     this.olvcMaePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcMaePct.Text            = "MAE %";
     this.olvcMaePct.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcMaePct.Width           = 42;
     //
     // olvcMfePct
     //
     this.olvcMfePct.CellPadding     = null;
     this.olvcMfePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcMfePct.Text            = "MFE %";
     this.olvcMfePct.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcMfePct.Width           = 42;
     //
     // olvcCumProfitPct
     //
     this.olvcCumProfitPct.CellPadding     = null;
     this.olvcCumProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcCumProfitPct.Text            = "%Profit Cumulative";
     this.olvcCumProfitPct.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcCumProfitPct.Width           = 41;
     //
     // olvcCumProfitDollar
     //
     this.olvcCumProfitDollar.CellPadding     = null;
     this.olvcCumProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcCumProfitDollar.Text            = "$Profit Cumulative";
     this.olvcCumProfitDollar.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcCumProfitDollar.Width           = 76;
     //
     // olvcComission
     //
     this.olvcComission.CellPadding     = null;
     this.olvcComission.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcComission.Text            = "$Commission";
     this.olvcComission.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.olvcComission.Width           = 40;
     //
     // ctxPopup
     //
     this.ctxPopup.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.mniShowEntriesExits,
         this.mniShowPercentage,
         this.mniShowBarsHeld,
         this.mniShowMaeMfe,
         this.mniShowSignals,
         this.mniShowCommission,
         this.toolStripSeparator2,
         this.mniColorify,
         this.toolStripSeparator1,
         this.mniCopyToClipboard,
         this.mniSaveToFile
     });
     this.ctxPopup.Name = "contextMenuStrip1";
     this.ctxPopup.Size = new System.Drawing.Size(183, 208);
     //
     // mniShowEntriesExits
     //
     this.mniShowEntriesExits.Checked      = true;
     this.mniShowEntriesExits.CheckOnClick = true;
     this.mniShowEntriesExits.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowEntriesExits.Name         = "mniShowEntriesExits";
     this.mniShowEntriesExits.Size         = new System.Drawing.Size(182, 22);
     this.mniShowEntriesExits.Text         = "Show EntriesExits";
     this.mniShowEntriesExits.Click       += new System.EventHandler(this.mniShowEntriesExits_Click);
     //
     // mniShowPercentage
     //
     this.mniShowPercentage.Checked      = true;
     this.mniShowPercentage.CheckOnClick = true;
     this.mniShowPercentage.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowPercentage.Name         = "mniShowPercentage";
     this.mniShowPercentage.Size         = new System.Drawing.Size(182, 22);
     this.mniShowPercentage.Text         = "Show Percentages";
     this.mniShowPercentage.Click       += new System.EventHandler(this.mniShowPercentage_Click);
     //
     // mniShowBarsHeld
     //
     this.mniShowBarsHeld.Checked      = true;
     this.mniShowBarsHeld.CheckOnClick = true;
     this.mniShowBarsHeld.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowBarsHeld.Name         = "mniShowBarsHeld";
     this.mniShowBarsHeld.Size         = new System.Drawing.Size(182, 22);
     this.mniShowBarsHeld.Text         = "Show BarsHeld";
     this.mniShowBarsHeld.Click       += new System.EventHandler(this.mniShowBarsHeld_Click);
     //
     // mniShowMaeMfe
     //
     this.mniShowMaeMfe.Checked      = true;
     this.mniShowMaeMfe.CheckOnClick = true;
     this.mniShowMaeMfe.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowMaeMfe.Name         = "mniShowMaeMfe";
     this.mniShowMaeMfe.Size         = new System.Drawing.Size(182, 22);
     this.mniShowMaeMfe.Text         = "Show MAE MFE";
     this.mniShowMaeMfe.Click       += new System.EventHandler(this.mniShowMaeMfe_Click);
     //
     // mniShowSignals
     //
     this.mniShowSignals.Checked      = true;
     this.mniShowSignals.CheckOnClick = true;
     this.mniShowSignals.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowSignals.Name         = "mniShowSignals";
     this.mniShowSignals.Size         = new System.Drawing.Size(182, 22);
     this.mniShowSignals.Text         = "Show Signals";
     this.mniShowSignals.Click       += new System.EventHandler(this.mniShowSignals_Click);
     //
     // mniShowCommission
     //
     this.mniShowCommission.Checked      = true;
     this.mniShowCommission.CheckOnClick = true;
     this.mniShowCommission.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniShowCommission.Name         = "mniShowCommission";
     this.mniShowCommission.Size         = new System.Drawing.Size(182, 22);
     this.mniShowCommission.Text         = "Show Commission";
     this.mniShowCommission.Click       += new System.EventHandler(this.mniShowCommission_Click);
     //
     // mniColorify
     //
     this.mniColorify.Checked      = true;
     this.mniColorify.CheckOnClick = true;
     this.mniColorify.CheckState   = System.Windows.Forms.CheckState.Checked;
     this.mniColorify.Name         = "mniColorify";
     this.mniColorify.Size         = new System.Drawing.Size(182, 22);
     this.mniColorify.Text         = "Colorify (slow)";
     this.mniColorify.Click       += new System.EventHandler(this.mniColorify_Click);
     //
     // toolStripSeparator1
     //
     this.toolStripSeparator1.Name = "toolStripSeparator1";
     this.toolStripSeparator1.Size = new System.Drawing.Size(179, 6);
     //
     // toolStripSeparator2
     //
     this.toolStripSeparator2.Name = "toolStripSeparator2";
     this.toolStripSeparator2.Size = new System.Drawing.Size(179, 6);
     //
     // mniCopyToClipboard
     //
     this.mniCopyToClipboard.Name         = "mniCopyToClipboard";
     this.mniCopyToClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
     this.mniCopyToClipboard.Size         = new System.Drawing.Size(182, 22);
     this.mniCopyToClipboard.Text         = "Copy";
     this.mniCopyToClipboard.Click       += new System.EventHandler(this.mniCopyToClipboard_Click);
     //
     // mniSaveToFile
     //
     this.mniSaveToFile.Name         = "mniSaveToFile";
     this.mniSaveToFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
     this.mniSaveToFile.Size         = new System.Drawing.Size(182, 22);
     this.mniSaveToFile.Text         = "Save (GUI-BLOCKING !!!)";
     this.mniSaveToFile.Visible      = false;
     this.mniSaveToFile.Click       += new System.EventHandler(this.mniSaveToFile_Click);
     //
     // Positions
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.olvPositions);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
     this.Name = "Positions";
     this.Size = new System.Drawing.Size(905, 303);
     ((System.ComponentModel.ISupportInitialize)(this.olvPositions)).EndInit();
     this.ctxPopup.ResumeLayout(false);
     this.ResumeLayout(false);
 }
		public ObjectListViewStatusUpdate( BrightIdeasSoftware.ObjectListView listView, object obj ) {
			ObjectListView = listView;
			Object = obj;
		}
Exemple #28
0
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).ID); };
            }
            else
            {
                switch (column.Name)
                {
                case "p_clmc":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_clmc); };
                    break;

                case "p_cpmc":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_cpmc); };
                    break;

                case "p_date":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_date.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "p_dw":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_dw); };
                    break;

                case "p_ggxh":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_ggxh); };
                    break;

                case "p_gys":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_gys); };
                    break;

                case "p_jsr":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_jsr); };
                    break;

                case "p_mjph":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_mjph); };
                    break;

                case "p_ph":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_ph); };
                    break;

                case "p_sl1":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_sl1); };
                    break;

                case "p_sl2":
                    column.AspectGetter = delegate(object x) { return(FormatDoubleBalue(((GouJinInfo)x).p_sl2)); };
                    break;

                case "p_zczh":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_zczh); };
                    break;

                case "p_zzs":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).p_zzs); };
                    break;

                case "RemarkInfo":
                    column.AspectGetter = delegate(object x) { return(((GouJinInfo)x).RemarkInfo); };
                    break;

                case "ToltalMoney":
                    column.AspectGetter = delegate(object x) { return(TotalMoney((GouJinInfo)x)); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
Exemple #29
0
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ClientList));

            this._firstName      = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._dateOfBirth    = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._region         = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._address        = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._phoneNumber    = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._sex            = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._email          = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this._nattionality   = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            this.toolStrip1      = new System.Windows.Forms.ToolStrip();
            this._saveFormButton = new System.Windows.Forms.ToolStripButton();
            this.Open            = new System.Windows.Forms.ToolStripLabel();
            this._lastName       = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
            _clientListView      = new BrightIdeasSoftware.ObjectListView();
            this.toolStrip1.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(_clientListView)).BeginInit();
            this.SuspendLayout();
            //
            // _firstName
            //
            this._firstName.AspectName  = "FirstName";
            this._firstName.CellPadding = null;
            this._firstName.Text        = "First Name";
            this._firstName.Width       = 72;
            //
            // _dateOfBirth
            //
            this._dateOfBirth.AspectName  = "DateOfBirth";
            this._dateOfBirth.CellPadding = null;
            this._dateOfBirth.Text        = "DateOfBirth";
            this._dateOfBirth.Width       = 73;
            //
            // _region
            //
            this._region.AspectName  = "Region";
            this._region.CellPadding = null;
            this._region.Text        = "Region";
            //
            // _address
            //
            this._address.AspectName  = "Address";
            this._address.CellPadding = null;
            this._address.Text        = "Address";
            //
            // _phoneNumber
            //
            this._phoneNumber.AspectName  = "PhoneNumber";
            this._phoneNumber.CellPadding = null;
            this._phoneNumber.Text        = "PhoneNumber";
            this._phoneNumber.Width       = 89;
            //
            // _sex
            //
            this._sex.AspectName  = "Sex";
            this._sex.CellPadding = null;
            this._sex.Text        = "Sex";
            //
            // _email
            //
            this._email.AspectName  = "Email";
            this._email.CellPadding = null;
            this._email.Text        = "Email";
            //
            // _nattionality
            //
            this._nattionality.AspectName  = "Nattionality";
            this._nattionality.CellPadding = null;
            this._nattionality.Text        = "Nattionality";
            //
            // toolStrip1
            //
            this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
                this._saveFormButton,
                this.Open
            });
            this.toolStrip1.Location = new System.Drawing.Point(0, 0);
            this.toolStrip1.Name     = "toolStrip1";
            this.toolStrip1.Size     = new System.Drawing.Size(669, 25);
            this.toolStrip1.TabIndex = 1;
            this.toolStrip1.Text     = "toolStrip1";
            //
            // _saveFormButton
            //
            this._saveFormButton.DisplayStyle          = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
            this._saveFormButton.Image                 = ((System.Drawing.Image)(resources.GetObject("_saveFormButton.Image")));
            this._saveFormButton.ImageTransparentColor = System.Drawing.Color.Magenta;
            this._saveFormButton.Name = "_saveFormButton";
            this._saveFormButton.Size = new System.Drawing.Size(23, 22);
            this._saveFormButton.Text = "toolStripButton1";
            //
            // Open
            //
            this.Open.Name = "Open";
            this.Open.Size = new System.Drawing.Size(36, 22);
            this.Open.Text = "Open";
            //
            // _lastName
            //
            this._lastName.AspectName  = "LastName";
            this._lastName.CellPadding = null;
            this._lastName.Text        = "Last Name";
            //
            // _clientListView
            //
            _clientListView.AllColumns.Add(this._firstName);
            _clientListView.AllColumns.Add(this._lastName);
            _clientListView.AllColumns.Add(this._dateOfBirth);
            _clientListView.AllColumns.Add(this._region);
            _clientListView.AllColumns.Add(this._address);
            _clientListView.AllColumns.Add(this._phoneNumber);
            _clientListView.AllColumns.Add(this._sex);
            _clientListView.AllColumns.Add(this._email);
            _clientListView.AllColumns.Add(this._nattionality);
            _clientListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
                this._firstName,
                this._lastName,
                this._dateOfBirth,
                this._region,
                this._address,
                this._phoneNumber,
                this._sex,
                this._email,
                this._nattionality
            });
            _clientListView.HasCollapsibleGroups = false;
            _clientListView.Location             = new System.Drawing.Point(12, 27);
            _clientListView.Name       = "_clientListView";
            _clientListView.ShowGroups = false;
            _clientListView.Size       = new System.Drawing.Size(656, 298);
            _clientListView.SortGroupItemsByPrimaryColumn = false;
            _clientListView.TabIndex = 0;
            _clientListView.UseCompatibleStateImageBehavior = false;
            _clientListView.View = System.Windows.Forms.View.Details;
            //
            // ClientList
            //
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode       = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize          = new System.Drawing.Size(669, 411);
            this.Controls.Add(this.toolStrip1);
            this.Controls.Add(_clientListView);
            this.Name = "ClientList";
            this.Text = "ClientLIst";
            this.toolStrip1.ResumeLayout(false);
            this.toolStrip1.PerformLayout();
            ((System.ComponentModel.ISupportInitialize)(_clientListView)).EndInit();
            this.ResumeLayout(false);
            this.PerformLayout();
        }
		void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			//System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Positions));
			//this.tradeTypes = new System.Windows.Forms.ImageList(this.components);
			this.olvPositions = new BrightIdeasSoftware.ObjectListView();
			this.olvcPosition = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcSerno = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcSymbol = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcQuantity = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryPrice = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntryOrder = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitDate = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitPrice = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitOrder = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitPct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitDollar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcBarsHeld = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcProfitPerBar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcEntrySignalName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcExitSignalName = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcMaePct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcMfePct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcCumProfitPct = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcCumProfitDollar = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.olvcComission = ((BrightIdeasSoftware.OLVColumn)(new BrightIdeasSoftware.OLVColumn()));
			this.ctxPopup = new System.Windows.Forms.ContextMenuStrip(this.components);
			this.mniShowEntriesExits = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowPercentage = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowBarsHeld = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowMaeMfe = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowSignals = new System.Windows.Forms.ToolStripMenuItem();
			this.mniShowCommission = new System.Windows.Forms.ToolStripMenuItem();
			this.mniColorify = new System.Windows.Forms.ToolStripMenuItem();
			this.toolStripSeparator1 = new System.Windows.Forms.ToolStripSeparator();
			this.toolStripSeparator2 = new System.Windows.Forms.ToolStripSeparator();
			this.mniCopyToClipboard = new System.Windows.Forms.ToolStripMenuItem();
			this.mniSaveToFile = new System.Windows.Forms.ToolStripMenuItem();
			((System.ComponentModel.ISupportInitialize)(this.olvPositions)).BeginInit();
			this.ctxPopup.SuspendLayout();
			this.SuspendLayout();
			// 
			// tradeTypes
			// 
			//this.tradeTypes.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("tradeTypes.ImageStream")));
			//this.tradeTypes.TransparentColor = System.Drawing.Color.Transparent;
			//this.tradeTypes.Images.SetKeyName(0, "45degrees3-LongEntryUnknown.png");
			//this.tradeTypes.Images.SetKeyName(1, "45degrees3-LongEntryProfit.png");
			//this.tradeTypes.Images.SetKeyName(2, "45degrees3-LongEntryLoss.png");
			//this.tradeTypes.Images.SetKeyName(3, "45degrees3-ShortEntryUnknown.png");
			//this.tradeTypes.Images.SetKeyName(4, "45degrees3-ShortEntryProfit.png");
			//this.tradeTypes.Images.SetKeyName(5, "45degrees3-ShortEntryLoss.png");
			// 
			// olvPositions
			// 
			this.olvPositions.BackColor = System.Drawing.SystemColors.Window;
			this.olvPositions.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.olvPositions.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
	            this.olvcPosition,
	            this.olvcSerno,
	            this.olvcSymbol,
	            this.olvcQuantity,
	            this.olvcEntryDate,
	            this.olvcEntryPrice,
	            this.olvcEntryOrder,
	            this.olvcExitDate,
	            this.olvcExitPrice,
	            this.olvcExitOrder,
	            this.olvcProfitPct,
	            this.olvcProfitDollar,
	            this.olvcBarsHeld,
	            this.olvcProfitPerBar,
	            this.olvcEntrySignalName,
	            this.olvcExitSignalName,
	            this.olvcMaePct,
	            this.olvcMfePct,
	            this.olvcCumProfitPct,
	            this.olvcCumProfitDollar,
	            this.olvcComission});
			this.olvPositions.AllColumns.Add(this.olvcPosition);
	        this.olvPositions.AllColumns.Add(this.olvcSerno);
			this.olvPositions.AllColumns.Add(this.olvcSymbol);
			this.olvPositions.AllColumns.Add(this.olvcQuantity);
			this.olvPositions.AllColumns.Add(this.olvcEntryDate);
			this.olvPositions.AllColumns.Add(this.olvcEntryPrice);
			this.olvPositions.AllColumns.Add(this.olvcEntryOrder);
			this.olvPositions.AllColumns.Add(this.olvcExitDate);
			this.olvPositions.AllColumns.Add(this.olvcExitPrice);
			this.olvPositions.AllColumns.Add(this.olvcExitOrder);
			this.olvPositions.AllColumns.Add(this.olvcProfitPct);
			this.olvPositions.AllColumns.Add(this.olvcProfitDollar);
			this.olvPositions.AllColumns.Add(this.olvcBarsHeld);
			this.olvPositions.AllColumns.Add(this.olvcProfitPerBar);
			this.olvPositions.AllColumns.Add(this.olvcEntrySignalName);
			this.olvPositions.AllColumns.Add(this.olvcExitSignalName);
			this.olvPositions.AllColumns.Add(this.olvcMaePct);
			this.olvPositions.AllColumns.Add(this.olvcMfePct);
			this.olvPositions.AllColumns.Add(this.olvcCumProfitPct);
			this.olvPositions.AllColumns.Add(this.olvcCumProfitDollar);
			this.olvPositions.AllColumns.Add(this.olvcComission);
			this.olvPositions.ContextMenuStrip = this.ctxPopup;
			this.olvPositions.Dock = System.Windows.Forms.DockStyle.Fill;
			this.olvPositions.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.olvPositions.FullRowSelect = true;
			this.olvPositions.HeaderUsesThemes = false;
			this.olvPositions.HideSelection = false;
			this.olvPositions.Location = new System.Drawing.Point(0, 0);
			this.olvPositions.MultiSelect = false;
			this.olvPositions.ShowCommandMenuOnRightClick = true;
			this.olvPositions.ShowGroups = false;
			this.olvPositions.TintSortColumn = true;
			this.olvPositions.UnfocusedHighlightBackgroundColor = System.Drawing.SystemColors.GradientActiveCaption;
			this.olvPositions.UseCompatibleStateImageBehavior = false;
			this.olvPositions.UseFilterIndicator = true;
			this.olvPositions.UseFiltering = true;
			this.olvPositions.UseHotItem = true;
			this.olvPositions.UseTranslucentHotItem = true;
			this.olvPositions.Name = "olvPositions";
			this.olvPositions.Size = new System.Drawing.Size(905, 303);
			//this.olvPositions.SmallImageList = this.tradeTypes;
			this.olvPositions.TabIndex = 0;
			this.olvPositions.UseCompatibleStateImageBehavior = false;
			this.olvPositions.View = System.Windows.Forms.View.Details;
			this.olvPositions.DoubleClick += new System.EventHandler(this.olvPositions_DoubleClick);
			// 
			// olvcPosition
			// 
			this.olvcPosition.CellPadding = null;
			this.olvcPosition.Text = "Position";
			this.olvcPosition.Width = 50;
			// 
			// olvcSerno
			// 
			this.olvcSerno.CellPadding = null;
			this.olvcSerno.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcSerno.Text = "Serno";
			this.olvcSerno.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcSerno.Width = 40;
			// 
			// olvcSymbol
			// 
			this.olvcSymbol.CellPadding = null;
			this.olvcSymbol.Text = "Symbol";
			this.olvcSymbol.Width = 20;
			// 
			// olvcQuantity
			// 
			this.olvcQuantity.CellPadding = null;
			this.olvcQuantity.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcQuantity.Text = "Shares";
			this.olvcQuantity.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcQuantity.Width = 19;
			// 
			// olvcEntryDate
			// 
			this.olvcEntryDate.CellPadding = null;
			this.olvcEntryDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryDate.Text = "Entry Date";
			this.olvcEntryDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryDate.Width = 110;
			// 
			// olvcEntryPrice
			// 
			this.olvcEntryPrice.CellPadding = null;
			this.olvcEntryPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryPrice.Text = "Entry Price";
			this.olvcEntryPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcEntryPrice.Width = 70;
			// 
			// olvcEntryOrder
			// 
			this.olvcEntryOrder.CellPadding = null;
			this.olvcEntryOrder.Text = "EntryOrder";
			this.olvcEntryOrder.Width = 50;
			// 
			// olvcExitDate
			// 
			this.olvcExitDate.CellPadding = null;
			this.olvcExitDate.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitDate.Text = "Exit Date";
			this.olvcExitDate.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitDate.Width = 110;
			// 
			// olvcExitPrice
			// 
			this.olvcExitPrice.CellPadding = null;
			this.olvcExitPrice.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitPrice.Text = "Exit Price";
			this.olvcExitPrice.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcExitPrice.Width = 70;
			// 
			// olvcExitOrder
			// 
			this.olvcExitOrder.CellPadding = null;
			this.olvcExitOrder.Text = "ExitOrder";
			this.olvcExitOrder.Width = 50;
			// 
			// olvcProfitPct
			// 
			this.olvcProfitPct.CellPadding = null;
			this.olvcProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPct.Text = "Profit %";
			this.olvcProfitPct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPct.Width = 36;
			// 
			// olvcProfitDollar
			// 
			this.olvcProfitDollar.CellPadding = null;
			this.olvcProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitDollar.Text = "Profit $";
			this.olvcProfitDollar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitDollar.Width = 69;
			// 
			// olvcBarsHeld
			// 
			this.olvcBarsHeld.CellPadding = null;
			this.olvcBarsHeld.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcBarsHeld.Text = "Bars Held";
			this.olvcBarsHeld.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcBarsHeld.Width = 31;
			// 
			// olvcProfitPerBar
			// 
			this.olvcProfitPerBar.CellPadding = null;
			this.olvcProfitPerBar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPerBar.Text = "Profit per Bar";
			this.olvcProfitPerBar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcProfitPerBar.Width = 60;
			// 
			// olvcEntrySignalName
			// 
			this.olvcEntrySignalName.CellPadding = null;
			this.olvcEntrySignalName.Text = "Entry Signal";
			this.olvcEntrySignalName.Width = 70;
			// 
			// olvcExitSignalName
			// 
			this.olvcExitSignalName.CellPadding = null;
			this.olvcExitSignalName.Text = "Exit Signal";
			this.olvcExitSignalName.Width = 70;
			// 
			// olvcMaePct
			// 
			this.olvcMaePct.CellPadding = null;
			this.olvcMaePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMaePct.Text = "MAE %";
			this.olvcMaePct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMaePct.Width = 42;
			// 
			// olvcMfePct
			// 
			this.olvcMfePct.CellPadding = null;
			this.olvcMfePct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMfePct.Text = "MFE %";
			this.olvcMfePct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcMfePct.Width = 42;
			// 
			// olvcCumProfitPct
			// 
			this.olvcCumProfitPct.CellPadding = null;
			this.olvcCumProfitPct.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitPct.Text = "%Profit Cumulative";
			this.olvcCumProfitPct.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitPct.Width = 41;
			// 
			// olvcCumProfitDollar
			// 
			this.olvcCumProfitDollar.CellPadding = null;
			this.olvcCumProfitDollar.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitDollar.Text = "$Profit Cumulative";
			this.olvcCumProfitDollar.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcCumProfitDollar.Width = 76;
			// 
			// olvcComission
			// 
			this.olvcComission.CellPadding = null;
			this.olvcComission.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcComission.Text = "$Commission";
			this.olvcComission.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.olvcComission.Width = 40;
			// 
			// ctxPopup
			// 
			this.ctxPopup.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
	            this.mniShowEntriesExits,
	            this.mniShowPercentage,
	            this.mniShowBarsHeld,
	            this.mniShowMaeMfe,
	            this.mniShowSignals,
	            this.mniShowCommission,
	            this.toolStripSeparator2,
	            this.mniColorify,
	            this.toolStripSeparator1,
	            this.mniCopyToClipboard,
	            this.mniSaveToFile});
			this.ctxPopup.Name = "contextMenuStrip1";
			this.ctxPopup.Size = new System.Drawing.Size(183, 208);
			// 
			// mniShowEntriesExits
			// 
			this.mniShowEntriesExits.Checked = true;
			this.mniShowEntriesExits.CheckOnClick = true;
			this.mniShowEntriesExits.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowEntriesExits.Name = "mniShowEntriesExits";
			this.mniShowEntriesExits.Size = new System.Drawing.Size(182, 22);
			this.mniShowEntriesExits.Text = "Show EntriesExits";
			this.mniShowEntriesExits.Click += new System.EventHandler(this.mniShowEntriesExits_Click);
			// 
			// mniShowPercentage
			// 
			this.mniShowPercentage.Checked = true;
			this.mniShowPercentage.CheckOnClick = true;
			this.mniShowPercentage.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowPercentage.Name = "mniShowPercentage";
			this.mniShowPercentage.Size = new System.Drawing.Size(182, 22);
			this.mniShowPercentage.Text = "Show Percentages";
			this.mniShowPercentage.Click += new System.EventHandler(this.mniShowPercentage_Click);
			// 
			// mniShowBarsHeld
			// 
			this.mniShowBarsHeld.Checked = true;
			this.mniShowBarsHeld.CheckOnClick = true;
			this.mniShowBarsHeld.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowBarsHeld.Name = "mniShowBarsHeld";
			this.mniShowBarsHeld.Size = new System.Drawing.Size(182, 22);
			this.mniShowBarsHeld.Text = "Show BarsHeld";
			this.mniShowBarsHeld.Click += new System.EventHandler(this.mniShowBarsHeld_Click);
			// 
			// mniShowMaeMfe
			// 
			this.mniShowMaeMfe.Checked = true;
			this.mniShowMaeMfe.CheckOnClick = true;
			this.mniShowMaeMfe.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowMaeMfe.Name = "mniShowMaeMfe";
			this.mniShowMaeMfe.Size = new System.Drawing.Size(182, 22);
			this.mniShowMaeMfe.Text = "Show MAE MFE";
			this.mniShowMaeMfe.Click += new System.EventHandler(this.mniShowMaeMfe_Click);
			// 
			// mniShowSignals
			// 
			this.mniShowSignals.Checked = true;
			this.mniShowSignals.CheckOnClick = true;
			this.mniShowSignals.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowSignals.Name = "mniShowSignals";
			this.mniShowSignals.Size = new System.Drawing.Size(182, 22);
			this.mniShowSignals.Text = "Show Signals";
			this.mniShowSignals.Click += new System.EventHandler(this.mniShowSignals_Click);
			// 
			// mniShowCommission
			// 
			this.mniShowCommission.Checked = true;
			this.mniShowCommission.CheckOnClick = true;
			this.mniShowCommission.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniShowCommission.Name = "mniShowCommission";
			this.mniShowCommission.Size = new System.Drawing.Size(182, 22);
			this.mniShowCommission.Text = "Show Commission";
			this.mniShowCommission.Click += new System.EventHandler(this.mniShowCommission_Click);
			// 
			// mniColorify
			// 
			this.mniColorify.Checked = true;
			this.mniColorify.CheckOnClick = true;
			this.mniColorify.CheckState = System.Windows.Forms.CheckState.Checked;
			this.mniColorify.Name = "mniColorify";
			this.mniColorify.Size = new System.Drawing.Size(182, 22);
			this.mniColorify.Text = "Colorify (slow)";
			this.mniColorify.Click += new System.EventHandler(this.mniColorify_Click);
			// 
			// toolStripSeparator1
			// 
			this.toolStripSeparator1.Name = "toolStripSeparator1";
			this.toolStripSeparator1.Size = new System.Drawing.Size(179, 6);
			// 
			// toolStripSeparator2
			// 
			this.toolStripSeparator2.Name = "toolStripSeparator2";
			this.toolStripSeparator2.Size = new System.Drawing.Size(179, 6);
			// 
			// mniCopyToClipboard
			// 
			this.mniCopyToClipboard.Name = "mniCopyToClipboard";
			this.mniCopyToClipboard.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.C)));
			this.mniCopyToClipboard.Size = new System.Drawing.Size(182, 22);
			this.mniCopyToClipboard.Text = "Copy";
			this.mniCopyToClipboard.Click += new System.EventHandler(this.mniCopyToClipboard_Click);
			// 
			// mniSaveToFile
			// 
			this.mniSaveToFile.Name = "mniSaveToFile";
			this.mniSaveToFile.ShortcutKeys = ((System.Windows.Forms.Keys)((System.Windows.Forms.Keys.Control | System.Windows.Forms.Keys.S)));
			this.mniSaveToFile.Size = new System.Drawing.Size(182, 22);
			this.mniSaveToFile.Text = "Save (GUI-BLOCKING !!!)";
			this.mniSaveToFile.Visible = false;
			this.mniSaveToFile.Click += new System.EventHandler(this.mniSaveToFile_Click);
			// 
			// Positions
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.Controls.Add(this.olvPositions);
			this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
			this.Name = "Positions";
			this.Size = new System.Drawing.Size(905, 303);
			((System.ComponentModel.ISupportInitialize)(this.olvPositions)).EndInit();
			this.ctxPopup.ResumeLayout(false);
			this.ResumeLayout(false);

		}
		void InitializeComponent() {
			this.components = new System.ComponentModel.Container();
			this.olvReport = new BrightIdeasSoftware.ObjectListView();
			this.colKpiTitles = new BrightIdeasSoftware.OLVColumn();
			this.collAllTrades = new BrightIdeasSoftware.OLVColumn();
			this.colLongTrades = new BrightIdeasSoftware.OLVColumn();
			this.colShortTrades = new BrightIdeasSoftware.OLVColumn();
			this.colBuyHold = new BrightIdeasSoftware.OLVColumn();
			this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
			((System.ComponentModel.ISupportInitialize)(this.olvReport)).BeginInit();
			this.SuspendLayout();
			// 
			// olvReport
			// 
			this.olvReport.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.olvReport.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
									this.colKpiTitles,
									this.collAllTrades,
									this.colLongTrades,
									this.colShortTrades,
									this.colBuyHold});
			this.olvReport.Dock = System.Windows.Forms.DockStyle.Fill;
			this.olvReport.FullRowSelect = true;
			this.olvReport.HeaderUsesThemes = false;
			this.olvReport.HideSelection = false;
			this.olvReport.IncludeColumnHeadersInCopy = true;
			this.olvReport.Location = new System.Drawing.Point(0, 0);
			this.olvReport.MultiSelect = false;
			this.olvReport.Name = "olvReport";
			this.olvReport.ShowCommandMenuOnRightClick = true;
			this.olvReport.ShowItemToolTips = true;
			this.olvReport.Size = new System.Drawing.Size(654, 374);
			this.olvReport.TabIndex = 3;
			this.olvReport.TintSortColumn = true;
			this.olvReport.UseCompatibleStateImageBehavior = false;
			this.olvReport.UseFilterIndicator = true;
			this.olvReport.View = System.Windows.Forms.View.Details;
			this.olvReport.SelectedIndexChanged += new System.EventHandler(this.lvReport_SelectedIndexChanged);
			// 
			// colKpiTitles
			// 
			this.colKpiTitles.CellPadding = null;
			this.colKpiTitles.Text = "";
			this.colKpiTitles.Width = 85;
			// 
			// collAllTrades
			// 
			this.collAllTrades.CellPadding = null;
			this.collAllTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.collAllTrades.Text = "All Trades";
			this.collAllTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.collAllTrades.Width = 63;
			// 
			// colLongTrades
			// 
			this.colLongTrades.CellPadding = null;
			this.colLongTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colLongTrades.Text = "Long Trades";
			this.colLongTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colLongTrades.Width = 63;
			// 
			// colShortTrades
			// 
			this.colShortTrades.CellPadding = null;
			this.colShortTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colShortTrades.Text = "Short Trades";
			this.colShortTrades.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colShortTrades.Width = 63;
			// 
			// colBuyHold
			// 
			this.colBuyHold.CellPadding = null;
			this.colBuyHold.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colBuyHold.Text = "Buy & Hold";
			this.colBuyHold.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.colBuyHold.Width = 63;
			// 
			// Performance
			// 
			this.BackColor = System.Drawing.SystemColors.Window;
			this.Controls.Add(this.olvReport);
			this.Name = "Performance";
			this.Size = new System.Drawing.Size(654, 374);
			((System.ComponentModel.ISupportInitialize)(this.olvReport)).EndInit();
			this.ResumeLayout(false);
		}
Exemple #32
0
        public void Formater(BrightIdeasSoftware.ObjectListView listview, BrightIdeasSoftware.OLVColumn column, bool isSHow)
        {
            if (column.Name == "OrderNumber")
            {
                column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).ID); };
            }
            else
            {
                switch (column.Name)
                {
                case "y_cpdm":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_cpdm); };
                    break;

                case "y_cpzczh":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_cpzczh); };
                    break;

                case "y_date":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_date.Value.ToString("yyyy-MM-dd HH:mm:ss")); };
                    break;

                case "y_dw":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_dw); };
                    break;

                case "y_fhrqz":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_fhrqz); };
                    break;

                case "y_ggxh":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_ggxh); };
                    break;

                case "y_ghdw":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_ghdw); };
                    break;

                case "y_isHGZ":
                    column.AspectGetter = delegate(object x) { return(BoolStateIsHGZ(((ShouHouInfo)x).y_isHGZ)); };
                    break;

                case "y_mjph":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_mjph); };
                    break;

                case "y_pm":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_pm); };
                    break;

                case "y_sccj":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_sccj); };
                    break;

                case "y_scph":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_scph); };
                    break;

                case "y_sl":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_sl); };
                    break;

                case "y_yxq":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_yxq); };
                    break;

                case "y_zgy":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_zgy); };
                    break;

                case "y_zlqk":
                    column.AspectGetter = delegate(object x) { return(((ShouHouInfo)x).y_zlqk); };
                    break;

                case "y_managertype":
                    column.AspectGetter = delegate(object x) { return(BoolManagerType(((ShouHouInfo)x).y_managertype)); };
                    break;

                default:
                    column.AspectGetter = delegate(object x) { return(""); };
                    break;
                }
            }
        }
 /// <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();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle1 = new BrightIdeasSoftware.HeaderStateStyle();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle2 = new BrightIdeasSoftware.HeaderStateStyle();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle3 = new BrightIdeasSoftware.HeaderStateStyle();
       System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(TranslatorHelper));
       PresentationControls.CheckBoxProperties checkBoxProperties1 = new PresentationControls.CheckBoxProperties();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle4 = new BrightIdeasSoftware.HeaderStateStyle();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle5 = new BrightIdeasSoftware.HeaderStateStyle();
       BrightIdeasSoftware.HeaderStateStyle headerStateStyle6 = new BrightIdeasSoftware.HeaderStateStyle();
       this.contextMenuStripBtnTranslate = new System.Windows.Forms.ContextMenuStrip(this.components);
       this.toolStripTranslateMenuItemSkyrimReplaceAll = new System.Windows.Forms.ToolStripMenuItem();
       this.toolStripTranslateMenuItemSkyrimFindEmpty = new System.Windows.Forms.ToolStripMenuItem();
       this.panelTranslatorTabControl = new System.Windows.Forms.Panel();
       this.paneltabControlTranslatorHelper = new System.Windows.Forms.Panel();
       this.panel8 = new System.Windows.Forms.Panel();
       this.tabControlTranslatorHelper = new System.Windows.Forms.TabControl();
       this.tabPageStrings = new System.Windows.Forms.TabPage();
       this.panel1 = new System.Windows.Forms.Panel();
       this.olvTHStrings = new BrightIdeasSoftware.FastObjectListView();
       this.headerFormatStyleData = new BrightIdeasSoftware.HeaderFormatStyle();
       this.hotItemStyleStrings = new BrightIdeasSoftware.HotItemStyle();
       this.imageListSortHeader = new System.Windows.Forms.ImageList(this.components);
       this.panelSearchInStringsList = new System.Windows.Forms.Panel();
       this.txtSearchInStringsList = new System.Windows.Forms.TextBox();
       this.tabPageDLStrings = new System.Windows.Forms.TabPage();
       this.panel3 = new System.Windows.Forms.Panel();
       this.olvTHDLStrings = new BrightIdeasSoftware.FastObjectListView();
       this.panelSearchInDLStringsList = new System.Windows.Forms.Panel();
       this.txtSearchInDLStringsList = new System.Windows.Forms.TextBox();
       this.tabPageILStrings = new System.Windows.Forms.TabPage();
       this.panel2 = new System.Windows.Forms.Panel();
       this.olvTHILStrings = new BrightIdeasSoftware.FastObjectListView();
       this.panelSearchInILStringsList = new System.Windows.Forms.Panel();
       this.txtSearchInILStringsList = new System.Windows.Forms.TextBox();
       this.tabPageOther = new System.Windows.Forms.TabPage();
       this.panel9 = new System.Windows.Forms.Panel();
       this.olvTHOtherStrings = new BrightIdeasSoftware.FastObjectListView();
       this.panelSearchInOtherStringsList = new System.Windows.Forms.Panel();
       this.txtSearchInOtherStringsList = new System.Windows.Forms.TextBox();
       this.panelTranslatorMain = new System.Windows.Forms.Panel();
       this.edtPluginInfo = new System.Windows.Forms.TextBox();
       this.label6 = new System.Windows.Forms.Label();
       this.edtTranslatedBy = new System.Windows.Forms.TextBox();
       this.label19 = new System.Windows.Forms.Label();
       this.cboxTargetLanguage = new System.Windows.Forms.ComboBox();
       this.cboxSourceLanguage = new System.Windows.Forms.ComboBox();
       this.edtPlugInAuthor = new System.Windows.Forms.TextBox();
       this.label5 = new System.Windows.Forms.Label();
       this.edtPlugInName = new System.Windows.Forms.TextBox();
       this.label4 = new System.Windows.Forms.Label();
       this.panelDetailString = new System.Windows.Forms.Panel();
       this.panel5 = new System.Windows.Forms.Panel();
       this.panel7 = new System.Windows.Forms.Panel();
       this.olvSkyrimDict = new BrightIdeasSoftware.FastObjectListView();
       this.panel6 = new System.Windows.Forms.Panel();
       this.cbSearchInSkyrimString = new PresentationControls.CheckBoxComboBox();
       this.btnSearchDict = new System.Windows.Forms.Button();
       this.txtSearchInSkyrimString = new System.Windows.Forms.TextBox();
       this.panel4 = new System.Windows.Forms.Panel();
       this.edtMemo = new System.Windows.Forms.TextBox();
       this.groupBoxTarget = new System.Windows.Forms.GroupBox();
       this.label12 = new System.Windows.Forms.Label();
       this.chkboxNewTextTranslate = new System.Windows.Forms.CheckBox();
       this.olvTHSkyrimTargetStrings = new BrightIdeasSoftware.ObjectListView();
       this.txtTargetStringsID = new System.Windows.Forms.TextBox();
       this.label22 = new System.Windows.Forms.Label();
       this.label14 = new System.Windows.Forms.Label();
       this.label13 = new System.Windows.Forms.Label();
       this.txtTargetStringNew = new System.Windows.Forms.TextBox();
       this.txtTargetEditorID = new System.Windows.Forms.TextBox();
       this.label21 = new System.Windows.Forms.Label();
       this.txtTargetStringOld = new System.Windows.Forms.TextBox();
       this.txtStringSkyrimDescTarget = new System.Windows.Forms.TextBox();
       this.groupBoxSource = new System.Windows.Forms.GroupBox();
       this.btnTranslatePlugInSrcWithWebEngine = new System.Windows.Forms.Button();
       this.btnTranslateSkyrimSrcWithWebEngine = new System.Windows.Forms.Button();
       this.olvTHSkyrimSourceStrings = new BrightIdeasSoftware.ObjectListView();
       this.label11 = new System.Windows.Forms.Label();
       this.label9 = new System.Windows.Forms.Label();
       this.txtSourceStringOld = new System.Windows.Forms.TextBox();
       this.label7 = new System.Windows.Forms.Label();
       this.label20 = new System.Windows.Forms.Label();
       this.txtStringSkyrimDescSource = new System.Windows.Forms.TextBox();
       this.txtSourceStringNew = new System.Windows.Forms.TextBox();
       this.txtSourceEditorID = new System.Windows.Forms.TextBox();
       this.txtSourceStringsID = new System.Windows.Forms.TextBox();
       this.label8 = new System.Windows.Forms.Label();
       this.groupBoxSkyrim = new System.Windows.Forms.GroupBox();
       this.label1 = new System.Windows.Forms.Label();
       this.txtSkyrimRecordTypeTH = new System.Windows.Forms.TextBox();
       this.label10 = new System.Windows.Forms.Label();
       this.txtSkyrimRecordType = new System.Windows.Forms.TextBox();
       this.label2 = new System.Windows.Forms.Label();
       this.txtSkyrimStringID = new System.Windows.Forms.TextBox();
       this.txtStringSkyrimEditorID = new System.Windows.Forms.TextBox();
       this.txtFormID = new System.Windows.Forms.TextBox();
       this.label18 = new System.Windows.Forms.Label();
       this.label3 = new System.Windows.Forms.Label();
       this.txtGroupName = new System.Windows.Forms.TextBox();
       this.label16 = new System.Windows.Forms.Label();
       this.OpenProjectModDialog = new System.Windows.Forms.OpenFileDialog();
       this.dataSetTH = new TESVSnip.Translator.DataSetTH();
       this.headerFormatStyleData2 = new BrightIdeasSoftware.HeaderFormatStyle();
       this.toolTipTH = new System.Windows.Forms.ToolTip(this.components);
       this.contextMenuStripBtnTranslate.SuspendLayout();
       this.panelTranslatorTabControl.SuspendLayout();
       this.paneltabControlTranslatorHelper.SuspendLayout();
       this.panel8.SuspendLayout();
       this.tabControlTranslatorHelper.SuspendLayout();
       this.tabPageStrings.SuspendLayout();
       this.panel1.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHStrings)).BeginInit();
       this.panelSearchInStringsList.SuspendLayout();
       this.tabPageDLStrings.SuspendLayout();
       this.panel3.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHDLStrings)).BeginInit();
       this.panelSearchInDLStringsList.SuspendLayout();
       this.tabPageILStrings.SuspendLayout();
       this.panel2.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHILStrings)).BeginInit();
       this.panelSearchInILStringsList.SuspendLayout();
       this.tabPageOther.SuspendLayout();
       this.panel9.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHOtherStrings)).BeginInit();
       this.panelSearchInOtherStringsList.SuspendLayout();
       this.panelTranslatorMain.SuspendLayout();
       this.panelDetailString.SuspendLayout();
       this.panel5.SuspendLayout();
       this.panel7.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvSkyrimDict)).BeginInit();
       this.panel6.SuspendLayout();
       this.panel4.SuspendLayout();
       this.groupBoxTarget.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHSkyrimTargetStrings)).BeginInit();
       this.groupBoxSource.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHSkyrimSourceStrings)).BeginInit();
       this.groupBoxSkyrim.SuspendLayout();
       ((System.ComponentModel.ISupportInitialize)(this.dataSetTH)).BeginInit();
       this.SuspendLayout();
       //
       // contextMenuStripBtnTranslate
       //
       this.contextMenuStripBtnTranslate.AllowMerge = false;
       this.contextMenuStripBtnTranslate.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripTranslateMenuItemSkyrimReplaceAll,
     this.toolStripTranslateMenuItemSkyrimFindEmpty});
       this.contextMenuStripBtnTranslate.Name = "contextMenuStrip1";
       this.contextMenuStripBtnTranslate.Size = new System.Drawing.Size(176, 48);
       //
       // toolStripTranslateMenuItemSkyrimReplaceAll
       //
       this.toolStripTranslateMenuItemSkyrimReplaceAll.Name = "toolStripTranslateMenuItemSkyrimReplaceAll";
       this.toolStripTranslateMenuItemSkyrimReplaceAll.Size = new System.Drawing.Size(175, 22);
       this.toolStripTranslateMenuItemSkyrimReplaceAll.Text = "Replace All Strings";
       //
       // toolStripTranslateMenuItemSkyrimFindEmpty
       //
       this.toolStripTranslateMenuItemSkyrimFindEmpty.Name = "toolStripTranslateMenuItemSkyrimFindEmpty";
       this.toolStripTranslateMenuItemSkyrimFindEmpty.Size = new System.Drawing.Size(175, 22);
       this.toolStripTranslateMenuItemSkyrimFindEmpty.Text = "Only Empty Strings";
       //
       // panelTranslatorTabControl
       //
       this.panelTranslatorTabControl.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.panelTranslatorTabControl.Controls.Add(this.paneltabControlTranslatorHelper);
       this.panelTranslatorTabControl.Controls.Add(this.panelDetailString);
       this.panelTranslatorTabControl.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panelTranslatorTabControl.Location = new System.Drawing.Point(0, 0);
       this.panelTranslatorTabControl.Name = "panelTranslatorTabControl";
       this.panelTranslatorTabControl.Size = new System.Drawing.Size(1276, 1027);
       this.panelTranslatorTabControl.TabIndex = 3;
       //
       // paneltabControlTranslatorHelper
       //
       this.paneltabControlTranslatorHelper.BackColor = System.Drawing.Color.GhostWhite;
       this.paneltabControlTranslatorHelper.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.paneltabControlTranslatorHelper.Controls.Add(this.panel8);
       this.paneltabControlTranslatorHelper.Controls.Add(this.panelTranslatorMain);
       this.paneltabControlTranslatorHelper.Dock = System.Windows.Forms.DockStyle.Fill;
       this.paneltabControlTranslatorHelper.Location = new System.Drawing.Point(0, 0);
       this.paneltabControlTranslatorHelper.Name = "paneltabControlTranslatorHelper";
       this.paneltabControlTranslatorHelper.Size = new System.Drawing.Size(733, 1025);
       this.paneltabControlTranslatorHelper.TabIndex = 4;
       //
       // panel8
       //
       this.panel8.Controls.Add(this.tabControlTranslatorHelper);
       this.panel8.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel8.Location = new System.Drawing.Point(0, 84);
       this.panel8.Name = "panel8";
       this.panel8.Size = new System.Drawing.Size(731, 939);
       this.panel8.TabIndex = 4;
       //
       // tabControlTranslatorHelper
       //
       this.tabControlTranslatorHelper.Controls.Add(this.tabPageStrings);
       this.tabControlTranslatorHelper.Controls.Add(this.tabPageDLStrings);
       this.tabControlTranslatorHelper.Controls.Add(this.tabPageILStrings);
       this.tabControlTranslatorHelper.Controls.Add(this.tabPageOther);
       this.tabControlTranslatorHelper.Dock = System.Windows.Forms.DockStyle.Fill;
       this.tabControlTranslatorHelper.HotTrack = true;
       this.tabControlTranslatorHelper.Location = new System.Drawing.Point(0, 0);
       this.tabControlTranslatorHelper.Name = "tabControlTranslatorHelper";
       this.tabControlTranslatorHelper.SelectedIndex = 0;
       this.tabControlTranslatorHelper.Size = new System.Drawing.Size(731, 939);
       this.tabControlTranslatorHelper.SizeMode = System.Windows.Forms.TabSizeMode.FillToRight;
       this.tabControlTranslatorHelper.TabIndex = 2;
       //
       // tabPageStrings
       //
       this.tabPageStrings.Controls.Add(this.panel1);
       this.tabPageStrings.Controls.Add(this.panelSearchInStringsList);
       this.tabPageStrings.Location = new System.Drawing.Point(4, 22);
       this.tabPageStrings.Name = "tabPageStrings";
       this.tabPageStrings.Padding = new System.Windows.Forms.Padding(3);
       this.tabPageStrings.Size = new System.Drawing.Size(723, 913);
       this.tabPageStrings.TabIndex = 0;
       this.tabPageStrings.Text = "Name";
       this.tabPageStrings.UseVisualStyleBackColor = true;
       //
       // panel1
       //
       this.panel1.Controls.Add(this.olvTHStrings);
       this.panel1.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel1.Location = new System.Drawing.Point(3, 24);
       this.panel1.Name = "panel1";
       this.panel1.Size = new System.Drawing.Size(717, 886);
       this.panel1.TabIndex = 2;
       //
       // olvTHStrings
       //
       this.olvTHStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHStrings.CheckBoxes = false;
       this.olvTHStrings.Dock = System.Windows.Forms.DockStyle.Fill;
       this.olvTHStrings.EmptyListMsg = "No Project Loaded";
       this.olvTHStrings.EnableSearchByKeyboard = true;
       this.olvTHStrings.FullRowSelect = true;
       this.olvTHStrings.GridLines = true;
       this.olvTHStrings.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHStrings.HeaderFormatStyle = this.headerFormatStyleData;
       this.olvTHStrings.HeaderUsesThemes = false;
       this.olvTHStrings.HeaderWordWrap = true;
       this.olvTHStrings.HideSelection = false;
       this.olvTHStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHStrings.Location = new System.Drawing.Point(0, 0);
       this.olvTHStrings.MultiSelect = false;
       this.olvTHStrings.Name = "olvTHStrings";
       this.olvTHStrings.OwnerDraw = true;
       this.olvTHStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHStrings.ShowGroups = false;
       this.olvTHStrings.ShowItemCountOnGroups = true;
       this.olvTHStrings.Size = new System.Drawing.Size(717, 886);
       this.olvTHStrings.SmallImageList = this.imageListSortHeader;
       this.olvTHStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHStrings.SpaceBetweenGroups = 4;
       this.olvTHStrings.TabIndex = 1;
       this.olvTHStrings.TintSortColumn = true;
       this.olvTHStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHStrings.UseFiltering = true;
       this.olvTHStrings.UseHotItem = true;
       this.olvTHStrings.View = System.Windows.Forms.View.Details;
       this.olvTHStrings.VirtualMode = true;
       this.olvTHStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHStrings.FormatRow += new System.EventHandler<BrightIdeasSoftware.FormatRowEventArgs>(this.ListView_FormatRow);
       this.olvTHStrings.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.olvTHStrings_ColumnClick);
       this.olvTHStrings.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.ListView_ItemSelectionChanged);
       this.olvTHStrings.Click += new System.EventHandler(this.ListView_Item_Click);
       //
       // headerFormatStyleData
       //
       headerStateStyle1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
       headerStateStyle1.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle1.ForeColor = System.Drawing.Color.Gainsboro;
       this.headerFormatStyleData.Hot = headerStateStyle1;
       headerStateStyle2.BackColor = System.Drawing.Color.Black;
       headerStateStyle2.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle2.ForeColor = System.Drawing.Color.Gainsboro;
       this.headerFormatStyleData.Normal = headerStateStyle2;
       headerStateStyle3.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
       headerStateStyle3.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle3.ForeColor = System.Drawing.Color.Gainsboro;
       headerStateStyle3.FrameColor = System.Drawing.Color.WhiteSmoke;
       headerStateStyle3.FrameWidth = 2F;
       this.headerFormatStyleData.Pressed = headerStateStyle3;
       //
       // hotItemStyleStrings
       //
       this.hotItemStyleStrings.BackColor = System.Drawing.Color.PeachPuff;
       this.hotItemStyleStrings.ForeColor = System.Drawing.Color.MediumBlue;
       //
       // imageListSortHeader
       //
       this.imageListSortHeader.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageListSortHeader.ImageStream")));
       this.imageListSortHeader.TransparentColor = System.Drawing.Color.Transparent;
       this.imageListSortHeader.Images.SetKeyName(0, "sort-ascend");
       this.imageListSortHeader.Images.SetKeyName(1, "sort-descend");
       //
       // panelSearchInStringsList
       //
       this.panelSearchInStringsList.Controls.Add(this.txtSearchInStringsList);
       this.panelSearchInStringsList.Dock = System.Windows.Forms.DockStyle.Top;
       this.panelSearchInStringsList.Location = new System.Drawing.Point(3, 3);
       this.panelSearchInStringsList.Name = "panelSearchInStringsList";
       this.panelSearchInStringsList.Size = new System.Drawing.Size(717, 21);
       this.panelSearchInStringsList.TabIndex = 1;
       //
       // txtSearchInStringsList
       //
       this.txtSearchInStringsList.BackColor = System.Drawing.Color.Snow;
       this.txtSearchInStringsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.txtSearchInStringsList.Dock = System.Windows.Forms.DockStyle.Fill;
       this.txtSearchInStringsList.Location = new System.Drawing.Point(0, 0);
       this.txtSearchInStringsList.MaxLength = 32;
       this.txtSearchInStringsList.Name = "txtSearchInStringsList";
       this.txtSearchInStringsList.Size = new System.Drawing.Size(717, 20);
       this.txtSearchInStringsList.TabIndex = 46;
       this.txtSearchInStringsList.Text = "txtSearchInStringsList";
       this.txtSearchInStringsList.TextChanged += new System.EventHandler(this.txtSearchInStringsList_TextChanged);
       //
       // tabPageDLStrings
       //
       this.tabPageDLStrings.Controls.Add(this.panel3);
       this.tabPageDLStrings.Controls.Add(this.panelSearchInDLStringsList);
       this.tabPageDLStrings.Location = new System.Drawing.Point(4, 22);
       this.tabPageDLStrings.Name = "tabPageDLStrings";
       this.tabPageDLStrings.Padding = new System.Windows.Forms.Padding(3);
       this.tabPageDLStrings.Size = new System.Drawing.Size(723, 913);
       this.tabPageDLStrings.TabIndex = 1;
       this.tabPageDLStrings.Text = "Description";
       this.tabPageDLStrings.UseVisualStyleBackColor = true;
       //
       // panel3
       //
       this.panel3.Controls.Add(this.olvTHDLStrings);
       this.panel3.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel3.Location = new System.Drawing.Point(3, 24);
       this.panel3.Name = "panel3";
       this.panel3.Size = new System.Drawing.Size(717, 886);
       this.panel3.TabIndex = 3;
       //
       // olvTHDLStrings
       //
       this.olvTHDLStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHDLStrings.CheckBoxes = false;
       this.olvTHDLStrings.Dock = System.Windows.Forms.DockStyle.Fill;
       this.olvTHDLStrings.EmptyListMsg = "No Project Loaded";
       this.olvTHDLStrings.EnableSearchByKeyboard = true;
       this.olvTHDLStrings.FullRowSelect = true;
       this.olvTHDLStrings.GridLines = true;
       this.olvTHDLStrings.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHDLStrings.HeaderFormatStyle = this.headerFormatStyleData;
       this.olvTHDLStrings.HeaderUsesThemes = false;
       this.olvTHDLStrings.HeaderWordWrap = true;
       this.olvTHDLStrings.HideSelection = false;
       this.olvTHDLStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHDLStrings.Location = new System.Drawing.Point(0, 0);
       this.olvTHDLStrings.MultiSelect = false;
       this.olvTHDLStrings.Name = "olvTHDLStrings";
       this.olvTHDLStrings.OwnerDraw = true;
       this.olvTHDLStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHDLStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHDLStrings.ShowGroups = false;
       this.olvTHDLStrings.ShowItemCountOnGroups = true;
       this.olvTHDLStrings.Size = new System.Drawing.Size(717, 886);
       this.olvTHDLStrings.SmallImageList = this.imageListSortHeader;
       this.olvTHDLStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHDLStrings.SpaceBetweenGroups = 4;
       this.olvTHDLStrings.TabIndex = 2;
       this.olvTHDLStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHDLStrings.UseFiltering = true;
       this.olvTHDLStrings.UseHotItem = true;
       this.olvTHDLStrings.View = System.Windows.Forms.View.Details;
       this.olvTHDLStrings.VirtualMode = true;
       this.olvTHDLStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHDLStrings.FormatRow += new System.EventHandler<BrightIdeasSoftware.FormatRowEventArgs>(this.ListView_FormatRow);
       this.olvTHDLStrings.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.olvTHDLStrings_ColumnClick);
       this.olvTHDLStrings.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.ListView_ItemSelectionChanged);
       this.olvTHDLStrings.Click += new System.EventHandler(this.ListView_Item_Click);
       //
       // panelSearchInDLStringsList
       //
       this.panelSearchInDLStringsList.Controls.Add(this.txtSearchInDLStringsList);
       this.panelSearchInDLStringsList.Dock = System.Windows.Forms.DockStyle.Top;
       this.panelSearchInDLStringsList.Location = new System.Drawing.Point(3, 3);
       this.panelSearchInDLStringsList.Name = "panelSearchInDLStringsList";
       this.panelSearchInDLStringsList.Size = new System.Drawing.Size(717, 21);
       this.panelSearchInDLStringsList.TabIndex = 2;
       //
       // txtSearchInDLStringsList
       //
       this.txtSearchInDLStringsList.BackColor = System.Drawing.Color.Snow;
       this.txtSearchInDLStringsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.txtSearchInDLStringsList.Dock = System.Windows.Forms.DockStyle.Fill;
       this.txtSearchInDLStringsList.Location = new System.Drawing.Point(0, 0);
       this.txtSearchInDLStringsList.MaxLength = 32;
       this.txtSearchInDLStringsList.Name = "txtSearchInDLStringsList";
       this.txtSearchInDLStringsList.Size = new System.Drawing.Size(717, 20);
       this.txtSearchInDLStringsList.TabIndex = 48;
       this.txtSearchInDLStringsList.Text = "txtSearchInDLStringsList";
       this.txtSearchInDLStringsList.TextChanged += new System.EventHandler(this.txtSearchInDLStringsList_TextChanged);
       //
       // tabPageILStrings
       //
       this.tabPageILStrings.Controls.Add(this.panel2);
       this.tabPageILStrings.Controls.Add(this.panelSearchInILStringsList);
       this.tabPageILStrings.Location = new System.Drawing.Point(4, 22);
       this.tabPageILStrings.Name = "tabPageILStrings";
       this.tabPageILStrings.Padding = new System.Windows.Forms.Padding(3);
       this.tabPageILStrings.Size = new System.Drawing.Size(723, 913);
       this.tabPageILStrings.TabIndex = 2;
       this.tabPageILStrings.Text = "Text";
       this.tabPageILStrings.UseVisualStyleBackColor = true;
       //
       // panel2
       //
       this.panel2.Controls.Add(this.olvTHILStrings);
       this.panel2.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel2.Location = new System.Drawing.Point(3, 24);
       this.panel2.Name = "panel2";
       this.panel2.Size = new System.Drawing.Size(717, 886);
       this.panel2.TabIndex = 4;
       //
       // olvTHILStrings
       //
       this.olvTHILStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHILStrings.CheckBoxes = false;
       this.olvTHILStrings.Dock = System.Windows.Forms.DockStyle.Fill;
       this.olvTHILStrings.EmptyListMsg = "No Project Loaded";
       this.olvTHILStrings.EnableSearchByKeyboard = true;
       this.olvTHILStrings.FullRowSelect = true;
       this.olvTHILStrings.GridLines = true;
       this.olvTHILStrings.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHILStrings.HeaderFormatStyle = this.headerFormatStyleData;
       this.olvTHILStrings.HeaderUsesThemes = false;
       this.olvTHILStrings.HeaderWordWrap = true;
       this.olvTHILStrings.HideSelection = false;
       this.olvTHILStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHILStrings.Location = new System.Drawing.Point(0, 0);
       this.olvTHILStrings.MultiSelect = false;
       this.olvTHILStrings.Name = "olvTHILStrings";
       this.olvTHILStrings.OwnerDraw = true;
       this.olvTHILStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHILStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHILStrings.ShowGroups = false;
       this.olvTHILStrings.ShowItemCountOnGroups = true;
       this.olvTHILStrings.Size = new System.Drawing.Size(717, 886);
       this.olvTHILStrings.SmallImageList = this.imageListSortHeader;
       this.olvTHILStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHILStrings.SpaceBetweenGroups = 4;
       this.olvTHILStrings.TabIndex = 3;
       this.olvTHILStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHILStrings.UseFiltering = true;
       this.olvTHILStrings.UseHotItem = true;
       this.olvTHILStrings.View = System.Windows.Forms.View.Details;
       this.olvTHILStrings.VirtualMode = true;
       this.olvTHILStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHILStrings.FormatRow += new System.EventHandler<BrightIdeasSoftware.FormatRowEventArgs>(this.ListView_FormatRow);
       this.olvTHILStrings.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.olvTHILStrings_ColumnClick);
       this.olvTHILStrings.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.ListView_ItemSelectionChanged);
       this.olvTHILStrings.Click += new System.EventHandler(this.ListView_Item_Click);
       //
       // panelSearchInILStringsList
       //
       this.panelSearchInILStringsList.Controls.Add(this.txtSearchInILStringsList);
       this.panelSearchInILStringsList.Dock = System.Windows.Forms.DockStyle.Top;
       this.panelSearchInILStringsList.Location = new System.Drawing.Point(3, 3);
       this.panelSearchInILStringsList.Name = "panelSearchInILStringsList";
       this.panelSearchInILStringsList.Size = new System.Drawing.Size(717, 21);
       this.panelSearchInILStringsList.TabIndex = 3;
       //
       // txtSearchInILStringsList
       //
       this.txtSearchInILStringsList.BackColor = System.Drawing.Color.Snow;
       this.txtSearchInILStringsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.txtSearchInILStringsList.Dock = System.Windows.Forms.DockStyle.Fill;
       this.txtSearchInILStringsList.Location = new System.Drawing.Point(0, 0);
       this.txtSearchInILStringsList.MaxLength = 32;
       this.txtSearchInILStringsList.Name = "txtSearchInILStringsList";
       this.txtSearchInILStringsList.Size = new System.Drawing.Size(717, 20);
       this.txtSearchInILStringsList.TabIndex = 48;
       this.txtSearchInILStringsList.Text = "txtSearchInILStringsList";
       this.txtSearchInILStringsList.TextChanged += new System.EventHandler(this.txtSearchInILStringsList_TextChanged);
       //
       // tabPageOther
       //
       this.tabPageOther.Controls.Add(this.panel9);
       this.tabPageOther.Controls.Add(this.panelSearchInOtherStringsList);
       this.tabPageOther.Location = new System.Drawing.Point(4, 22);
       this.tabPageOther.Name = "tabPageOther";
       this.tabPageOther.Padding = new System.Windows.Forms.Padding(3);
       this.tabPageOther.Size = new System.Drawing.Size(723, 913);
       this.tabPageOther.TabIndex = 3;
       this.tabPageOther.Text = "Other";
       this.tabPageOther.UseVisualStyleBackColor = true;
       //
       // panel9
       //
       this.panel9.Controls.Add(this.olvTHOtherStrings);
       this.panel9.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel9.Location = new System.Drawing.Point(3, 24);
       this.panel9.Name = "panel9";
       this.panel9.Size = new System.Drawing.Size(717, 886);
       this.panel9.TabIndex = 5;
       //
       // olvTHOtherStrings
       //
       this.olvTHOtherStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHOtherStrings.CheckBoxes = false;
       this.olvTHOtherStrings.Dock = System.Windows.Forms.DockStyle.Fill;
       this.olvTHOtherStrings.EmptyListMsg = "No Project Loaded";
       this.olvTHOtherStrings.EnableSearchByKeyboard = true;
       this.olvTHOtherStrings.FullRowSelect = true;
       this.olvTHOtherStrings.GridLines = true;
       this.olvTHOtherStrings.HeaderFont = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHOtherStrings.HeaderFormatStyle = this.headerFormatStyleData;
       this.olvTHOtherStrings.HeaderUsesThemes = false;
       this.olvTHOtherStrings.HeaderWordWrap = true;
       this.olvTHOtherStrings.HideSelection = false;
       this.olvTHOtherStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHOtherStrings.Location = new System.Drawing.Point(0, 0);
       this.olvTHOtherStrings.MultiSelect = false;
       this.olvTHOtherStrings.Name = "olvTHOtherStrings";
       this.olvTHOtherStrings.OwnerDraw = true;
       this.olvTHOtherStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHOtherStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHOtherStrings.ShowGroups = false;
       this.olvTHOtherStrings.ShowItemCountOnGroups = true;
       this.olvTHOtherStrings.Size = new System.Drawing.Size(717, 886);
       this.olvTHOtherStrings.SmallImageList = this.imageListSortHeader;
       this.olvTHOtherStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHOtherStrings.SpaceBetweenGroups = 4;
       this.olvTHOtherStrings.TabIndex = 4;
       this.olvTHOtherStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHOtherStrings.UseFiltering = true;
       this.olvTHOtherStrings.UseHotItem = true;
       this.olvTHOtherStrings.View = System.Windows.Forms.View.Details;
       this.olvTHOtherStrings.VirtualMode = true;
       this.olvTHOtherStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHOtherStrings.FormatRow += new System.EventHandler<BrightIdeasSoftware.FormatRowEventArgs>(this.ListView_FormatRow);
       this.olvTHOtherStrings.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.olvTHOtherStrings_ColumnClick);
       this.olvTHOtherStrings.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.ListView_ItemSelectionChanged);
       this.olvTHOtherStrings.Click += new System.EventHandler(this.ListView_Item_Click);
       //
       // panelSearchInOtherStringsList
       //
       this.panelSearchInOtherStringsList.Controls.Add(this.txtSearchInOtherStringsList);
       this.panelSearchInOtherStringsList.Dock = System.Windows.Forms.DockStyle.Top;
       this.panelSearchInOtherStringsList.Location = new System.Drawing.Point(3, 3);
       this.panelSearchInOtherStringsList.Name = "panelSearchInOtherStringsList";
       this.panelSearchInOtherStringsList.Size = new System.Drawing.Size(717, 21);
       this.panelSearchInOtherStringsList.TabIndex = 4;
       //
       // txtSearchInOtherStringsList
       //
       this.txtSearchInOtherStringsList.BackColor = System.Drawing.Color.Snow;
       this.txtSearchInOtherStringsList.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.txtSearchInOtherStringsList.Dock = System.Windows.Forms.DockStyle.Fill;
       this.txtSearchInOtherStringsList.Location = new System.Drawing.Point(0, 0);
       this.txtSearchInOtherStringsList.MaxLength = 32;
       this.txtSearchInOtherStringsList.Name = "txtSearchInOtherStringsList";
       this.txtSearchInOtherStringsList.Size = new System.Drawing.Size(717, 20);
       this.txtSearchInOtherStringsList.TabIndex = 48;
       this.txtSearchInOtherStringsList.Text = "txtSearchInOtherStringsList";
       //
       // panelTranslatorMain
       //
       this.panelTranslatorMain.BackColor = System.Drawing.SystemColors.Info;
       this.panelTranslatorMain.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.panelTranslatorMain.Controls.Add(this.edtPluginInfo);
       this.panelTranslatorMain.Controls.Add(this.label6);
       this.panelTranslatorMain.Controls.Add(this.edtTranslatedBy);
       this.panelTranslatorMain.Controls.Add(this.label19);
       this.panelTranslatorMain.Controls.Add(this.cboxTargetLanguage);
       this.panelTranslatorMain.Controls.Add(this.cboxSourceLanguage);
       this.panelTranslatorMain.Controls.Add(this.edtPlugInAuthor);
       this.panelTranslatorMain.Controls.Add(this.label5);
       this.panelTranslatorMain.Controls.Add(this.edtPlugInName);
       this.panelTranslatorMain.Controls.Add(this.label4);
       this.panelTranslatorMain.Dock = System.Windows.Forms.DockStyle.Top;
       this.panelTranslatorMain.Location = new System.Drawing.Point(0, 0);
       this.panelTranslatorMain.Name = "panelTranslatorMain";
       this.panelTranslatorMain.Size = new System.Drawing.Size(731, 84);
       this.panelTranslatorMain.TabIndex = 3;
       //
       // edtPluginInfo
       //
       this.edtPluginInfo.BackColor = System.Drawing.Color.AliceBlue;
       this.edtPluginInfo.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.edtPluginInfo.ForeColor = System.Drawing.Color.Black;
       this.edtPluginInfo.Location = new System.Drawing.Point(491, 2);
       this.edtPluginInfo.Multiline = true;
       this.edtPluginInfo.Name = "edtPluginInfo";
       this.edtPluginInfo.Size = new System.Drawing.Size(234, 77);
       this.edtPluginInfo.TabIndex = 46;
       //
       // label6
       //
       this.label6.AutoSize = true;
       this.label6.Location = new System.Drawing.Point(5, 58);
       this.label6.Name = "label6";
       this.label6.Size = new System.Drawing.Size(77, 13);
       this.label6.TabIndex = 45;
       this.label6.Text = "Translated by :";
       this.label6.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // edtTranslatedBy
       //
       this.edtTranslatedBy.Location = new System.Drawing.Point(83, 54);
       this.edtTranslatedBy.MaxLength = 32;
       this.edtTranslatedBy.Name = "edtTranslatedBy";
       this.edtTranslatedBy.Size = new System.Drawing.Size(245, 20);
       this.edtTranslatedBy.TabIndex = 44;
       this.edtTranslatedBy.Text = "edtTranslatedBy";
       //
       // label19
       //
       this.label19.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label19.Location = new System.Drawing.Point(335, 34);
       this.label19.Name = "label19";
       this.label19.Size = new System.Drawing.Size(150, 12);
       this.label19.TabIndex = 43;
       this.label19.Text = "to";
       this.label19.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
       //
       // cboxTargetLanguage
       //
       this.cboxTargetLanguage.FormattingEnabled = true;
       this.cboxTargetLanguage.Location = new System.Drawing.Point(335, 54);
       this.cboxTargetLanguage.Name = "cboxTargetLanguage";
       this.cboxTargetLanguage.Size = new System.Drawing.Size(150, 21);
       this.cboxTargetLanguage.TabIndex = 42;
       this.cboxTargetLanguage.SelectedIndexChanged += new System.EventHandler(this.cboxLanguage_SelectedIndexChanged);
       //
       // cboxSourceLanguage
       //
       this.cboxSourceLanguage.FormattingEnabled = true;
       this.cboxSourceLanguage.Location = new System.Drawing.Point(335, 6);
       this.cboxSourceLanguage.Name = "cboxSourceLanguage";
       this.cboxSourceLanguage.Size = new System.Drawing.Size(150, 21);
       this.cboxSourceLanguage.TabIndex = 40;
       this.cboxSourceLanguage.SelectedIndexChanged += new System.EventHandler(this.cboxLanguage_SelectedIndexChanged);
       //
       // edtPlugInAuthor
       //
       this.edtPlugInAuthor.BackColor = System.Drawing.Color.Lavender;
       this.edtPlugInAuthor.Location = new System.Drawing.Point(83, 30);
       this.edtPlugInAuthor.Name = "edtPlugInAuthor";
       this.edtPlugInAuthor.ReadOnly = true;
       this.edtPlugInAuthor.Size = new System.Drawing.Size(245, 20);
       this.edtPlugInAuthor.TabIndex = 37;
       this.edtPlugInAuthor.Text = "edtPlugInAuthor";
       //
       // label5
       //
       this.label5.AutoSize = true;
       this.label5.Location = new System.Drawing.Point(38, 34);
       this.label5.Name = "label5";
       this.label5.Size = new System.Drawing.Size(44, 13);
       this.label5.TabIndex = 38;
       this.label5.Text = "Author :";
       this.label5.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // edtPlugInName
       //
       this.edtPlugInName.BackColor = System.Drawing.Color.SteelBlue;
       this.edtPlugInName.ForeColor = System.Drawing.Color.White;
       this.edtPlugInName.Location = new System.Drawing.Point(83, 6);
       this.edtPlugInName.Name = "edtPlugInName";
       this.edtPlugInName.Size = new System.Drawing.Size(245, 20);
       this.edtPlugInName.TabIndex = 35;
       this.edtPlugInName.Text = "edtPlugInName";
       //
       // label4
       //
       this.label4.AutoSize = true;
       this.label4.Location = new System.Drawing.Point(39, 10);
       this.label4.Name = "label4";
       this.label4.Size = new System.Drawing.Size(43, 13);
       this.label4.TabIndex = 36;
       this.label4.Text = "PlugIn :";
       this.label4.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // panelDetailString
       //
       this.panelDetailString.BackColor = System.Drawing.Color.Ivory;
       this.panelDetailString.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.panelDetailString.Controls.Add(this.panel5);
       this.panelDetailString.Controls.Add(this.panel4);
       this.panelDetailString.Controls.Add(this.groupBoxTarget);
       this.panelDetailString.Controls.Add(this.groupBoxSource);
       this.panelDetailString.Controls.Add(this.groupBoxSkyrim);
       this.panelDetailString.Dock = System.Windows.Forms.DockStyle.Right;
       this.panelDetailString.Location = new System.Drawing.Point(733, 0);
       this.panelDetailString.MaximumSize = new System.Drawing.Size(541, 2000);
       this.panelDetailString.MinimumSize = new System.Drawing.Size(541, 2);
       this.panelDetailString.Name = "panelDetailString";
       this.panelDetailString.Size = new System.Drawing.Size(541, 1025);
       this.panelDetailString.TabIndex = 3;
       //
       // panel5
       //
       this.panel5.Controls.Add(this.panel7);
       this.panel5.Controls.Add(this.panel6);
       this.panel5.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel5.Location = new System.Drawing.Point(0, 650);
       this.panel5.Name = "panel5";
       this.panel5.Size = new System.Drawing.Size(539, 273);
       this.panel5.TabIndex = 5;
       //
       // panel7
       //
       this.panel7.Controls.Add(this.olvSkyrimDict);
       this.panel7.Dock = System.Windows.Forms.DockStyle.Fill;
       this.panel7.Location = new System.Drawing.Point(0, 27);
       this.panel7.Name = "panel7";
       this.panel7.Size = new System.Drawing.Size(539, 246);
       this.panel7.TabIndex = 3;
       //
       // olvSkyrimDict
       //
       this.olvSkyrimDict.AlternateRowBackColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
       this.olvSkyrimDict.CheckBoxes = false;
       this.olvSkyrimDict.Dock = System.Windows.Forms.DockStyle.Fill;
       this.olvSkyrimDict.EmptyListMsg = "No Dictionnary Loaded";
       this.olvSkyrimDict.EnableSearchByKeyboard = true;
       this.olvSkyrimDict.FullRowSelect = true;
       this.olvSkyrimDict.GridLines = true;
       this.olvSkyrimDict.HeaderUsesThemes = false;
       this.olvSkyrimDict.HeaderWordWrap = true;
       this.olvSkyrimDict.HideSelection = false;
       this.olvSkyrimDict.Location = new System.Drawing.Point(0, 0);
       this.olvSkyrimDict.Name = "olvSkyrimDict";
       this.olvSkyrimDict.OwnerDraw = true;
       this.olvSkyrimDict.ShowGroups = false;
       this.olvSkyrimDict.Size = new System.Drawing.Size(539, 246);
       this.olvSkyrimDict.TabIndex = 0;
       this.olvSkyrimDict.UseAlternatingBackColors = true;
       this.olvSkyrimDict.UseCompatibleStateImageBehavior = false;
       this.olvSkyrimDict.UseFiltering = true;
       this.olvSkyrimDict.UseHotItem = true;
       this.olvSkyrimDict.View = System.Windows.Forms.View.Details;
       this.olvSkyrimDict.VirtualMode = true;
       this.olvSkyrimDict.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvSkyrimDict.DoubleClick += new System.EventHandler(this.olvSkyrimDict_DoubleClick);
       //
       // panel6
       //
       this.panel6.Controls.Add(this.cbSearchInSkyrimString);
       this.panel6.Controls.Add(this.btnSearchDict);
       this.panel6.Controls.Add(this.txtSearchInSkyrimString);
       this.panel6.Dock = System.Windows.Forms.DockStyle.Top;
       this.panel6.Location = new System.Drawing.Point(0, 0);
       this.panel6.Name = "panel6";
       this.panel6.Size = new System.Drawing.Size(539, 27);
       this.panel6.TabIndex = 2;
       //
       // cbSearchInSkyrimString
       //
       checkBoxProperties1.ForeColor = System.Drawing.SystemColors.ControlText;
       this.cbSearchInSkyrimString.CheckBoxProperties = checkBoxProperties1;
       this.cbSearchInSkyrimString.DisplayMemberSingleItem = "";
       this.cbSearchInSkyrimString.FormattingEnabled = true;
       this.cbSearchInSkyrimString.Location = new System.Drawing.Point(3, 3);
       this.cbSearchInSkyrimString.Name = "cbSearchInSkyrimString";
       this.cbSearchInSkyrimString.Size = new System.Drawing.Size(161, 21);
       this.cbSearchInSkyrimString.TabIndex = 49;
       //
       // btnSearchDict
       //
       this.btnSearchDict.Image = global::TESVSnip.Properties.Resources.ColumnFilterIndicator;
       this.btnSearchDict.Location = new System.Drawing.Point(507, 2);
       this.btnSearchDict.Name = "btnSearchDict";
       this.btnSearchDict.Size = new System.Drawing.Size(25, 23);
       this.btnSearchDict.TabIndex = 48;
       this.btnSearchDict.UseVisualStyleBackColor = true;
       this.btnSearchDict.Click += new System.EventHandler(this.btnSearchDict_Click);
       //
       // txtSearchInSkyrimString
       //
       this.txtSearchInSkyrimString.BackColor = System.Drawing.Color.Snow;
       this.txtSearchInSkyrimString.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
       this.txtSearchInSkyrimString.Location = new System.Drawing.Point(170, 3);
       this.txtSearchInSkyrimString.MaxLength = 32;
       this.txtSearchInSkyrimString.Name = "txtSearchInSkyrimString";
       this.txtSearchInSkyrimString.Size = new System.Drawing.Size(331, 20);
       this.txtSearchInSkyrimString.TabIndex = 46;
       this.txtSearchInSkyrimString.Text = "txtSearchInSkyrimString";
       //
       // panel4
       //
       this.panel4.Controls.Add(this.edtMemo);
       this.panel4.Dock = System.Windows.Forms.DockStyle.Bottom;
       this.panel4.Location = new System.Drawing.Point(0, 923);
       this.panel4.Name = "panel4";
       this.panel4.Size = new System.Drawing.Size(539, 100);
       this.panel4.TabIndex = 4;
       //
       // edtMemo
       //
       this.edtMemo.BackColor = System.Drawing.Color.SteelBlue;
       this.edtMemo.Dock = System.Windows.Forms.DockStyle.Fill;
       this.edtMemo.ForeColor = System.Drawing.Color.White;
       this.edtMemo.Location = new System.Drawing.Point(0, 0);
       this.edtMemo.Multiline = true;
       this.edtMemo.Name = "edtMemo";
       this.edtMemo.ScrollBars = System.Windows.Forms.ScrollBars.Both;
       this.edtMemo.Size = new System.Drawing.Size(539, 100);
       this.edtMemo.TabIndex = 0;
       //
       // groupBoxTarget
       //
       this.groupBoxTarget.Controls.Add(this.label12);
       this.groupBoxTarget.Controls.Add(this.chkboxNewTextTranslate);
       this.groupBoxTarget.Controls.Add(this.olvTHSkyrimTargetStrings);
       this.groupBoxTarget.Controls.Add(this.txtTargetStringsID);
       this.groupBoxTarget.Controls.Add(this.label22);
       this.groupBoxTarget.Controls.Add(this.label14);
       this.groupBoxTarget.Controls.Add(this.label13);
       this.groupBoxTarget.Controls.Add(this.txtTargetStringNew);
       this.groupBoxTarget.Controls.Add(this.txtTargetEditorID);
       this.groupBoxTarget.Controls.Add(this.label21);
       this.groupBoxTarget.Controls.Add(this.txtTargetStringOld);
       this.groupBoxTarget.Controls.Add(this.txtStringSkyrimDescTarget);
       this.groupBoxTarget.Dock = System.Windows.Forms.DockStyle.Top;
       this.groupBoxTarget.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.groupBoxTarget.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.groupBoxTarget.Location = new System.Drawing.Point(0, 375);
       this.groupBoxTarget.Name = "groupBoxTarget";
       this.groupBoxTarget.Size = new System.Drawing.Size(539, 275);
       this.groupBoxTarget.TabIndex = 3;
       this.groupBoxTarget.TabStop = false;
       this.groupBoxTarget.Text = "TRANSLATION :";
       //
       // label12
       //
       this.label12.AutoSize = true;
       this.label12.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label12.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(0)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.label12.Location = new System.Drawing.Point(4, 122);
       this.label12.Name = "label12";
       this.label12.Size = new System.Drawing.Size(65, 13);
       this.label12.TabIndex = 63;
       this.label12.Text = "New Text:";
       this.label12.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // chkboxNewTextTranslate
       //
       this.chkboxNewTextTranslate.AutoSize = true;
       this.chkboxNewTextTranslate.Location = new System.Drawing.Point(29, 100);
       this.chkboxNewTextTranslate.Name = "chkboxNewTextTranslate";
       this.chkboxNewTextTranslate.Size = new System.Drawing.Size(15, 14);
       this.chkboxNewTextTranslate.TabIndex = 62;
       this.chkboxNewTextTranslate.UseVisualStyleBackColor = true;
       this.chkboxNewTextTranslate.CheckedChanged += new System.EventHandler(this.chkboxNewTextTranslate_CheckedChanged);
       //
       // olvTHSkyrimTargetStrings
       //
       this.olvTHSkyrimTargetStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHSkyrimTargetStrings.Cursor = System.Windows.Forms.Cursors.Default;
       this.olvTHSkyrimTargetStrings.Dock = System.Windows.Forms.DockStyle.Bottom;
       this.olvTHSkyrimTargetStrings.EmptyListMsg = "No match found";
       this.olvTHSkyrimTargetStrings.EnableSearchByKeyboard = true;
       this.olvTHSkyrimTargetStrings.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHSkyrimTargetStrings.FullRowSelect = true;
       this.olvTHSkyrimTargetStrings.GridLines = true;
       this.olvTHSkyrimTargetStrings.HeaderUsesThemes = false;
       this.olvTHSkyrimTargetStrings.HeaderWordWrap = true;
       this.olvTHSkyrimTargetStrings.HideSelection = false;
       this.olvTHSkyrimTargetStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHSkyrimTargetStrings.Location = new System.Drawing.Point(3, 191);
       this.olvTHSkyrimTargetStrings.MultiSelect = false;
       this.olvTHSkyrimTargetStrings.Name = "olvTHSkyrimTargetStrings";
       this.olvTHSkyrimTargetStrings.OwnerDraw = true;
       this.olvTHSkyrimTargetStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHSkyrimTargetStrings.SelectedColumnTint = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
       this.olvTHSkyrimTargetStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHSkyrimTargetStrings.ShowItemCountOnGroups = true;
       this.olvTHSkyrimTargetStrings.Size = new System.Drawing.Size(533, 81);
       this.olvTHSkyrimTargetStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHSkyrimTargetStrings.SpaceBetweenGroups = 10;
       this.olvTHSkyrimTargetStrings.TabIndex = 60;
       this.olvTHSkyrimTargetStrings.TintSortColumn = true;
       this.olvTHSkyrimTargetStrings.UseAlternatingBackColors = true;
       this.olvTHSkyrimTargetStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHSkyrimTargetStrings.UseFiltering = true;
       this.olvTHSkyrimTargetStrings.UseHotItem = true;
       this.olvTHSkyrimTargetStrings.View = System.Windows.Forms.View.Details;
       this.olvTHSkyrimTargetStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHSkyrimTargetStrings.DoubleClick += new System.EventHandler(this.olvTHSkyrimTargetStrings_DoubleClick);
       //
       // txtTargetStringsID
       //
       this.txtTargetStringsID.BackColor = System.Drawing.Color.Cornsilk;
       this.txtTargetStringsID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtTargetStringsID.ForeColor = System.Drawing.Color.Black;
       this.txtTargetStringsID.Location = new System.Drawing.Point(72, 17);
       this.txtTargetStringsID.Name = "txtTargetStringsID";
       this.txtTargetStringsID.ReadOnly = true;
       this.txtTargetStringsID.Size = new System.Drawing.Size(100, 20);
       this.txtTargetStringsID.TabIndex = 50;
       this.txtTargetStringsID.Text = "txtTargetStringsID";
       this.txtTargetStringsID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // label22
       //
       this.label22.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label22.ForeColor = System.Drawing.Color.Black;
       this.label22.Location = new System.Drawing.Point(181, 21);
       this.label22.Name = "label22";
       this.label22.Size = new System.Drawing.Size(55, 13);
       this.label22.TabIndex = 59;
       this.label22.Text = "Editor ID :";
       this.label22.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // label14
       //
       this.label14.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label14.ForeColor = System.Drawing.Color.Black;
       this.label14.Location = new System.Drawing.Point(15, 21);
       this.label14.Name = "label14";
       this.label14.Size = new System.Drawing.Size(54, 13);
       this.label14.TabIndex = 51;
       this.label14.Text = "String ID :";
       this.label14.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // label13
       //
       this.label13.AutoSize = true;
       this.label13.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label13.ForeColor = System.Drawing.Color.Black;
       this.label13.Location = new System.Drawing.Point(10, 159);
       this.label13.Name = "label13";
       this.label13.Size = new System.Drawing.Size(59, 13);
       this.label13.TabIndex = 46;
       this.label13.Text = "Old Text:";
       this.label13.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtTargetStringNew
       //
       this.txtTargetStringNew.BackColor = System.Drawing.Color.White;
       this.txtTargetStringNew.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtTargetStringNew.ForeColor = System.Drawing.Color.Black;
       this.txtTargetStringNew.Location = new System.Drawing.Point(74, 93);
       this.txtTargetStringNew.Multiline = true;
       this.txtTargetStringNew.Name = "txtTargetStringNew";
       this.txtTargetStringNew.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtTargetStringNew.Size = new System.Drawing.Size(459, 44);
       this.txtTargetStringNew.TabIndex = 0;
       this.txtTargetStringNew.Text = "txtTargetStringNew";
       this.txtTargetStringNew.DoubleClick += new System.EventHandler(this.txtTargetStringNew_DoubleClick);
       this.txtTargetStringNew.KeyPress += new System.Windows.Forms.KeyPressEventHandler(this.txtTargetStringNew_KeyPress);
       this.txtTargetStringNew.Validating += new System.ComponentModel.CancelEventHandler(this.txtTargetStringNew_Validating);
       this.txtTargetStringNew.Validated += new System.EventHandler(this.txtTargetStringNew_Validated);
       //
       // txtTargetEditorID
       //
       this.txtTargetEditorID.BackColor = System.Drawing.Color.Cornsilk;
       this.txtTargetEditorID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtTargetEditorID.ForeColor = System.Drawing.Color.Black;
       this.txtTargetEditorID.Location = new System.Drawing.Point(235, 17);
       this.txtTargetEditorID.Name = "txtTargetEditorID";
       this.txtTargetEditorID.ReadOnly = true;
       this.txtTargetEditorID.Size = new System.Drawing.Size(298, 20);
       this.txtTargetEditorID.TabIndex = 58;
       this.txtTargetEditorID.Text = "txtTargetEditorID";
       //
       // label21
       //
       this.label21.AutoSize = true;
       this.label21.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label21.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.label21.Location = new System.Drawing.Point(17, 60);
       this.label21.Name = "label21";
       this.label21.Size = new System.Drawing.Size(52, 13);
       this.label21.TabIndex = 57;
       this.label21.Text = "Skyrim :";
       this.label21.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtTargetStringOld
       //
       this.txtTargetStringOld.BackColor = System.Drawing.Color.Gainsboro;
       this.txtTargetStringOld.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtTargetStringOld.ForeColor = System.Drawing.Color.Black;
       this.txtTargetStringOld.Location = new System.Drawing.Point(74, 143);
       this.txtTargetStringOld.Multiline = true;
       this.txtTargetStringOld.Name = "txtTargetStringOld";
       this.txtTargetStringOld.ReadOnly = true;
       this.txtTargetStringOld.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtTargetStringOld.Size = new System.Drawing.Size(459, 44);
       this.txtTargetStringOld.TabIndex = 47;
       //
       // txtStringSkyrimDescTarget
       //
       this.txtStringSkyrimDescTarget.BackColor = System.Drawing.Color.WhiteSmoke;
       this.txtStringSkyrimDescTarget.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtStringSkyrimDescTarget.Location = new System.Drawing.Point(74, 44);
       this.txtStringSkyrimDescTarget.Multiline = true;
       this.txtStringSkyrimDescTarget.Name = "txtStringSkyrimDescTarget";
       this.txtStringSkyrimDescTarget.ReadOnly = true;
       this.txtStringSkyrimDescTarget.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtStringSkyrimDescTarget.Size = new System.Drawing.Size(459, 44);
       this.txtStringSkyrimDescTarget.TabIndex = 56;
       this.txtStringSkyrimDescTarget.Text = "txtStringSkyrimDescTarget";
       //
       // groupBoxSource
       //
       this.groupBoxSource.Controls.Add(this.btnTranslatePlugInSrcWithWebEngine);
       this.groupBoxSource.Controls.Add(this.btnTranslateSkyrimSrcWithWebEngine);
       this.groupBoxSource.Controls.Add(this.olvTHSkyrimSourceStrings);
       this.groupBoxSource.Controls.Add(this.label11);
       this.groupBoxSource.Controls.Add(this.label9);
       this.groupBoxSource.Controls.Add(this.txtSourceStringOld);
       this.groupBoxSource.Controls.Add(this.label7);
       this.groupBoxSource.Controls.Add(this.label20);
       this.groupBoxSource.Controls.Add(this.txtStringSkyrimDescSource);
       this.groupBoxSource.Controls.Add(this.txtSourceStringNew);
       this.groupBoxSource.Controls.Add(this.txtSourceEditorID);
       this.groupBoxSource.Controls.Add(this.txtSourceStringsID);
       this.groupBoxSource.Controls.Add(this.label8);
       this.groupBoxSource.Dock = System.Windows.Forms.DockStyle.Top;
       this.groupBoxSource.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.groupBoxSource.ForeColor = System.Drawing.Color.Purple;
       this.groupBoxSource.Location = new System.Drawing.Point(0, 100);
       this.groupBoxSource.Name = "groupBoxSource";
       this.groupBoxSource.Size = new System.Drawing.Size(539, 275);
       this.groupBoxSource.TabIndex = 1;
       this.groupBoxSource.TabStop = false;
       this.groupBoxSource.Text = "ORIGINAL :";
       //
       // btnTranslatePlugInSrcWithWebEngine
       //
       this.btnTranslatePlugInSrcWithWebEngine.Image = global::TESVSnip.Properties.Resources.language_skills_16x16;
       this.btnTranslatePlugInSrcWithWebEngine.Location = new System.Drawing.Point(47, 113);
       this.btnTranslatePlugInSrcWithWebEngine.Name = "btnTranslatePlugInSrcWithWebEngine";
       this.btnTranslatePlugInSrcWithWebEngine.Size = new System.Drawing.Size(24, 24);
       this.btnTranslatePlugInSrcWithWebEngine.TabIndex = 58;
       this.toolTipTH.SetToolTip(this.btnTranslatePlugInSrcWithWebEngine, "Translate with Google text or selected text.");
       this.btnTranslatePlugInSrcWithWebEngine.UseVisualStyleBackColor = true;
       this.btnTranslatePlugInSrcWithWebEngine.Click += new System.EventHandler(this.btnTranslatePlugInSrcWithWebEngine_Click);
       //
       // btnTranslateSkyrimSrcWithWebEngine
       //
       this.btnTranslateSkyrimSrcWithWebEngine.Image = global::TESVSnip.Properties.Resources.language_skills_16x16;
       this.btnTranslateSkyrimSrcWithWebEngine.Location = new System.Drawing.Point(47, 64);
       this.btnTranslateSkyrimSrcWithWebEngine.Name = "btnTranslateSkyrimSrcWithWebEngine";
       this.btnTranslateSkyrimSrcWithWebEngine.Size = new System.Drawing.Size(24, 24);
       this.btnTranslateSkyrimSrcWithWebEngine.TabIndex = 57;
       this.toolTipTH.SetToolTip(this.btnTranslateSkyrimSrcWithWebEngine, "Translate with Google text or selected text.");
       this.btnTranslateSkyrimSrcWithWebEngine.UseVisualStyleBackColor = true;
       this.btnTranslateSkyrimSrcWithWebEngine.Click += new System.EventHandler(this.btnTranslateSkyrimSrcWithWebEngine_Click);
       //
       // olvTHSkyrimSourceStrings
       //
       this.olvTHSkyrimSourceStrings.AlternateRowBackColor = System.Drawing.SystemColors.Info;
       this.olvTHSkyrimSourceStrings.Cursor = System.Windows.Forms.Cursors.Default;
       this.olvTHSkyrimSourceStrings.Dock = System.Windows.Forms.DockStyle.Bottom;
       this.olvTHSkyrimSourceStrings.EmptyListMsg = "No match found";
       this.olvTHSkyrimSourceStrings.EnableSearchByKeyboard = true;
       this.olvTHSkyrimSourceStrings.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.olvTHSkyrimSourceStrings.FullRowSelect = true;
       this.olvTHSkyrimSourceStrings.GridLines = true;
       this.olvTHSkyrimSourceStrings.HeaderUsesThemes = false;
       this.olvTHSkyrimSourceStrings.HeaderWordWrap = true;
       this.olvTHSkyrimSourceStrings.HideSelection = false;
       this.olvTHSkyrimSourceStrings.HotItemStyle = this.hotItemStyleStrings;
       this.olvTHSkyrimSourceStrings.Location = new System.Drawing.Point(3, 191);
       this.olvTHSkyrimSourceStrings.MultiSelect = false;
       this.olvTHSkyrimSourceStrings.Name = "olvTHSkyrimSourceStrings";
       this.olvTHSkyrimSourceStrings.OwnerDraw = true;
       this.olvTHSkyrimSourceStrings.SelectColumnsOnRightClickBehaviour = BrightIdeasSoftware.ObjectListView.ColumnSelectBehaviour.Submenu;
       this.olvTHSkyrimSourceStrings.SelectedColumnTint = System.Drawing.Color.FromArgb(((int)(((byte)(15)))), ((int)(((byte)(255)))), ((int)(((byte)(255)))), ((int)(((byte)(192)))));
       this.olvTHSkyrimSourceStrings.ShowCommandMenuOnRightClick = true;
       this.olvTHSkyrimSourceStrings.ShowItemCountOnGroups = true;
       this.olvTHSkyrimSourceStrings.Size = new System.Drawing.Size(533, 81);
       this.olvTHSkyrimSourceStrings.Sorting = System.Windows.Forms.SortOrder.Ascending;
       this.olvTHSkyrimSourceStrings.SpaceBetweenGroups = 10;
       this.olvTHSkyrimSourceStrings.TabIndex = 56;
       this.olvTHSkyrimSourceStrings.TintSortColumn = true;
       this.olvTHSkyrimSourceStrings.UseAlternatingBackColors = true;
       this.olvTHSkyrimSourceStrings.UseCompatibleStateImageBehavior = false;
       this.olvTHSkyrimSourceStrings.UseFiltering = true;
       this.olvTHSkyrimSourceStrings.UseHotItem = true;
       this.olvTHSkyrimSourceStrings.View = System.Windows.Forms.View.Details;
       this.olvTHSkyrimSourceStrings.CellToolTipShowing += new System.EventHandler<BrightIdeasSoftware.ToolTipShowingEventArgs>(this.ListView_CellToolTipShowing);
       this.olvTHSkyrimSourceStrings.DoubleClick += new System.EventHandler(this.olvTHSkyrimSourceStrings_DoubleClick);
       //
       // label11
       //
       this.label11.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label11.ForeColor = System.Drawing.Color.Black;
       this.label11.Location = new System.Drawing.Point(15, 21);
       this.label11.Name = "label11";
       this.label11.Size = new System.Drawing.Size(54, 13);
       this.label11.TabIndex = 44;
       this.label11.Text = "String ID :";
       this.label11.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // label9
       //
       this.label9.AutoSize = true;
       this.label9.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label9.ForeColor = System.Drawing.Color.Black;
       this.label9.Location = new System.Drawing.Point(10, 159);
       this.label9.Name = "label9";
       this.label9.Size = new System.Drawing.Size(59, 13);
       this.label9.TabIndex = 39;
       this.label9.Text = "Old Text:";
       this.label9.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtSourceStringOld
       //
       this.txtSourceStringOld.BackColor = System.Drawing.Color.Gainsboro;
       this.txtSourceStringOld.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Italic, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSourceStringOld.ForeColor = System.Drawing.Color.Black;
       this.txtSourceStringOld.Location = new System.Drawing.Point(74, 143);
       this.txtSourceStringOld.Multiline = true;
       this.txtSourceStringOld.Name = "txtSourceStringOld";
       this.txtSourceStringOld.ReadOnly = true;
       this.txtSourceStringOld.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtSourceStringOld.Size = new System.Drawing.Size(459, 44);
       this.txtSourceStringOld.TabIndex = 40;
       this.txtSourceStringOld.Text = "txtSourceStringOld";
       //
       // label7
       //
       this.label7.AutoSize = true;
       this.label7.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label7.ForeColor = System.Drawing.Color.Purple;
       this.label7.Location = new System.Drawing.Point(4, 95);
       this.label7.Name = "label7";
       this.label7.Size = new System.Drawing.Size(65, 13);
       this.label7.TabIndex = 41;
       this.label7.Text = "New Text:";
       this.label7.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // label20
       //
       this.label20.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label20.ForeColor = System.Drawing.Color.Black;
       this.label20.Location = new System.Drawing.Point(181, 21);
       this.label20.Name = "label20";
       this.label20.Size = new System.Drawing.Size(55, 13);
       this.label20.TabIndex = 55;
       this.label20.Text = "Editor ID :";
       this.label20.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtStringSkyrimDescSource
       //
       this.txtStringSkyrimDescSource.BackColor = System.Drawing.Color.White;
       this.txtStringSkyrimDescSource.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtStringSkyrimDescSource.HideSelection = false;
       this.txtStringSkyrimDescSource.Location = new System.Drawing.Point(74, 44);
       this.txtStringSkyrimDescSource.Multiline = true;
       this.txtStringSkyrimDescSource.Name = "txtStringSkyrimDescSource";
       this.txtStringSkyrimDescSource.ReadOnly = true;
       this.txtStringSkyrimDescSource.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtStringSkyrimDescSource.Size = new System.Drawing.Size(459, 44);
       this.txtStringSkyrimDescSource.TabIndex = 32;
       this.txtStringSkyrimDescSource.Text = "txtStringSkyrimDescSource";
       //
       // txtSourceStringNew
       //
       this.txtSourceStringNew.BackColor = System.Drawing.Color.White;
       this.txtSourceStringNew.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSourceStringNew.ForeColor = System.Drawing.Color.Black;
       this.txtSourceStringNew.HideSelection = false;
       this.txtSourceStringNew.Location = new System.Drawing.Point(74, 93);
       this.txtSourceStringNew.Multiline = true;
       this.txtSourceStringNew.Name = "txtSourceStringNew";
       this.txtSourceStringNew.ReadOnly = true;
       this.txtSourceStringNew.ScrollBars = System.Windows.Forms.ScrollBars.Vertical;
       this.txtSourceStringNew.Size = new System.Drawing.Size(459, 44);
       this.txtSourceStringNew.TabIndex = 42;
       this.txtSourceStringNew.Text = "txtSourceStringNew";
       //
       // txtSourceEditorID
       //
       this.txtSourceEditorID.BackColor = System.Drawing.Color.LemonChiffon;
       this.txtSourceEditorID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSourceEditorID.ForeColor = System.Drawing.Color.Black;
       this.txtSourceEditorID.Location = new System.Drawing.Point(235, 17);
       this.txtSourceEditorID.Name = "txtSourceEditorID";
       this.txtSourceEditorID.ReadOnly = true;
       this.txtSourceEditorID.Size = new System.Drawing.Size(298, 20);
       this.txtSourceEditorID.TabIndex = 54;
       this.txtSourceEditorID.Text = "txtSourceEditorID";
       //
       // txtSourceStringsID
       //
       this.txtSourceStringsID.BackColor = System.Drawing.Color.LemonChiffon;
       this.txtSourceStringsID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSourceStringsID.ForeColor = System.Drawing.Color.Black;
       this.txtSourceStringsID.Location = new System.Drawing.Point(72, 17);
       this.txtSourceStringsID.Name = "txtSourceStringsID";
       this.txtSourceStringsID.ReadOnly = true;
       this.txtSourceStringsID.Size = new System.Drawing.Size(100, 20);
       this.txtSourceStringsID.TabIndex = 43;
       this.txtSourceStringsID.Text = "txtSourceStringsID";
       this.txtSourceStringsID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // label8
       //
       this.label8.AutoSize = true;
       this.label8.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label8.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.label8.Location = new System.Drawing.Point(17, 44);
       this.label8.Name = "label8";
       this.label8.Size = new System.Drawing.Size(52, 13);
       this.label8.TabIndex = 37;
       this.label8.Text = "Skyrim :";
       this.label8.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // groupBoxSkyrim
       //
       this.groupBoxSkyrim.Controls.Add(this.label1);
       this.groupBoxSkyrim.Controls.Add(this.txtSkyrimRecordTypeTH);
       this.groupBoxSkyrim.Controls.Add(this.label10);
       this.groupBoxSkyrim.Controls.Add(this.txtSkyrimRecordType);
       this.groupBoxSkyrim.Controls.Add(this.label2);
       this.groupBoxSkyrim.Controls.Add(this.txtSkyrimStringID);
       this.groupBoxSkyrim.Controls.Add(this.txtStringSkyrimEditorID);
       this.groupBoxSkyrim.Controls.Add(this.txtFormID);
       this.groupBoxSkyrim.Controls.Add(this.label18);
       this.groupBoxSkyrim.Controls.Add(this.label3);
       this.groupBoxSkyrim.Controls.Add(this.txtGroupName);
       this.groupBoxSkyrim.Controls.Add(this.label16);
       this.groupBoxSkyrim.Dock = System.Windows.Forms.DockStyle.Top;
       this.groupBoxSkyrim.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.groupBoxSkyrim.ForeColor = System.Drawing.Color.FromArgb(((int)(((byte)(192)))), ((int)(((byte)(64)))), ((int)(((byte)(0)))));
       this.groupBoxSkyrim.Location = new System.Drawing.Point(0, 0);
       this.groupBoxSkyrim.Name = "groupBoxSkyrim";
       this.groupBoxSkyrim.Size = new System.Drawing.Size(539, 100);
       this.groupBoxSkyrim.TabIndex = 0;
       this.groupBoxSkyrim.TabStop = false;
       this.groupBoxSkyrim.Text = "SKYRIM :";
       //
       // label1
       //
       this.label1.AutoSize = true;
       this.label1.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label1.ForeColor = System.Drawing.Color.Black;
       this.label1.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
       this.label1.Location = new System.Drawing.Point(384, 49);
       this.label1.Name = "label1";
       this.label1.Size = new System.Drawing.Size(41, 13);
       this.label1.TabIndex = 63;
       this.label1.Text = "Name :";
       this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtSkyrimRecordTypeTH
       //
       this.txtSkyrimRecordTypeTH.BackColor = System.Drawing.Color.Lavender;
       this.txtSkyrimRecordTypeTH.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSkyrimRecordTypeTH.Location = new System.Drawing.Point(433, 45);
       this.txtSkyrimRecordTypeTH.Name = "txtSkyrimRecordTypeTH";
       this.txtSkyrimRecordTypeTH.ReadOnly = true;
       this.txtSkyrimRecordTypeTH.Size = new System.Drawing.Size(100, 20);
       this.txtSkyrimRecordTypeTH.TabIndex = 4;
       this.txtSkyrimRecordTypeTH.Text = "textBox1";
       this.txtSkyrimRecordTypeTH.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // label10
       //
       this.label10.AutoSize = true;
       this.label10.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label10.ForeColor = System.Drawing.Color.Black;
       this.label10.ImageAlign = System.Drawing.ContentAlignment.MiddleRight;
       this.label10.Location = new System.Drawing.Point(365, 22);
       this.label10.Name = "label10";
       this.label10.Size = new System.Drawing.Size(60, 13);
       this.label10.TabIndex = 61;
       this.label10.Text = "Rec Type :";
       this.label10.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtSkyrimRecordType
       //
       this.txtSkyrimRecordType.BackColor = System.Drawing.Color.Lavender;
       this.txtSkyrimRecordType.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSkyrimRecordType.Location = new System.Drawing.Point(433, 18);
       this.txtSkyrimRecordType.Name = "txtSkyrimRecordType";
       this.txtSkyrimRecordType.ReadOnly = true;
       this.txtSkyrimRecordType.Size = new System.Drawing.Size(100, 20);
       this.txtSkyrimRecordType.TabIndex = 2;
       this.txtSkyrimRecordType.Text = "txtSkyrimRecordType";
       this.txtSkyrimRecordType.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // label2
       //
       this.label2.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label2.ForeColor = System.Drawing.Color.Black;
       this.label2.Location = new System.Drawing.Point(7, 23);
       this.label2.Name = "label2";
       this.label2.Size = new System.Drawing.Size(55, 13);
       this.label2.TabIndex = 34;
       this.label2.Text = "Form ID :";
       this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtSkyrimStringID
       //
       this.txtSkyrimStringID.BackColor = System.Drawing.Color.Lavender;
       this.txtSkyrimStringID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtSkyrimStringID.Location = new System.Drawing.Point(252, 19);
       this.txtSkyrimStringID.Name = "txtSkyrimStringID";
       this.txtSkyrimStringID.ReadOnly = true;
       this.txtSkyrimStringID.Size = new System.Drawing.Size(100, 20);
       this.txtSkyrimStringID.TabIndex = 1;
       this.txtSkyrimStringID.Text = "txtSkyrimStringID";
       this.txtSkyrimStringID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // txtStringSkyrimEditorID
       //
       this.txtStringSkyrimEditorID.BackColor = System.Drawing.Color.Lavender;
       this.txtStringSkyrimEditorID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtStringSkyrimEditorID.Location = new System.Drawing.Point(72, 45);
       this.txtStringSkyrimEditorID.Name = "txtStringSkyrimEditorID";
       this.txtStringSkyrimEditorID.ReadOnly = true;
       this.txtStringSkyrimEditorID.Size = new System.Drawing.Size(298, 20);
       this.txtStringSkyrimEditorID.TabIndex = 3;
       this.txtStringSkyrimEditorID.Text = "txtStringSkyrimEditorID";
       //
       // txtFormID
       //
       this.txtFormID.BackColor = System.Drawing.Color.Lavender;
       this.txtFormID.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtFormID.Location = new System.Drawing.Point(72, 19);
       this.txtFormID.Name = "txtFormID";
       this.txtFormID.ReadOnly = true;
       this.txtFormID.ShortcutsEnabled = false;
       this.txtFormID.Size = new System.Drawing.Size(100, 20);
       this.txtFormID.TabIndex = 0;
       this.txtFormID.Text = "txtFormID";
       this.txtFormID.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
       //
       // label18
       //
       this.label18.AutoSize = true;
       this.label18.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label18.ForeColor = System.Drawing.Color.Black;
       this.label18.Location = new System.Drawing.Point(25, 75);
       this.label18.Name = "label18";
       this.label18.Size = new System.Drawing.Size(42, 13);
       this.label18.TabIndex = 53;
       this.label18.Text = "Group :";
       this.label18.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // label3
       //
       this.label3.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label3.ForeColor = System.Drawing.Color.Black;
       this.label3.Location = new System.Drawing.Point(7, 49);
       this.label3.Name = "label3";
       this.label3.Size = new System.Drawing.Size(55, 13);
       this.label3.TabIndex = 35;
       this.label3.Text = "Editor ID :";
       this.label3.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // txtGroupName
       //
       this.txtGroupName.BackColor = System.Drawing.Color.Lavender;
       this.txtGroupName.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.txtGroupName.Location = new System.Drawing.Point(72, 71);
       this.txtGroupName.Name = "txtGroupName";
       this.txtGroupName.ReadOnly = true;
       this.txtGroupName.Size = new System.Drawing.Size(298, 20);
       this.txtGroupName.TabIndex = 5;
       this.txtGroupName.Text = "txtGroupName";
       //
       // label16
       //
       this.label16.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       this.label16.ForeColor = System.Drawing.Color.Black;
       this.label16.Location = new System.Drawing.Point(186, 23);
       this.label16.Name = "label16";
       this.label16.Size = new System.Drawing.Size(54, 13);
       this.label16.TabIndex = 36;
       this.label16.Text = "String ID :";
       this.label16.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
       //
       // OpenProjectModDialog
       //
       this.OpenProjectModDialog.Filter = "Project (*.plugin)|*.plugin";
       this.OpenProjectModDialog.Multiselect = true;
       this.OpenProjectModDialog.RestoreDirectory = true;
       this.OpenProjectModDialog.Title = "Select project to open";
       //
       // dataSetTH
       //
       this.dataSetTH.DataSetName = "DataSetTH";
       this.dataSetTH.SchemaSerializationMode = System.Data.SchemaSerializationMode.IncludeSchema;
       //
       // headerFormatStyleData2
       //
       headerStateStyle4.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(32)))), ((int)(((byte)(32)))), ((int)(((byte)(32)))));
       headerStateStyle4.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle4.ForeColor = System.Drawing.Color.Gainsboro;
       this.headerFormatStyleData2.Hot = headerStateStyle4;
       headerStateStyle5.BackColor = System.Drawing.Color.Gray;
       headerStateStyle5.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle5.ForeColor = System.Drawing.Color.White;
       this.headerFormatStyleData2.Normal = headerStateStyle5;
       headerStateStyle6.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(64)))), ((int)(((byte)(64)))), ((int)(((byte)(64)))));
       headerStateStyle6.Font = new System.Drawing.Font("Microsoft Sans Serif", 9F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
       headerStateStyle6.ForeColor = System.Drawing.Color.Gainsboro;
       headerStateStyle6.FrameColor = System.Drawing.Color.WhiteSmoke;
       headerStateStyle6.FrameWidth = 2F;
       this.headerFormatStyleData2.Pressed = headerStateStyle6;
       //
       // TranslatorHelper
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
       this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
       this.ClientSize = new System.Drawing.Size(1276, 1027);
       this.ControlBox = false;
       this.Controls.Add(this.panelTranslatorTabControl);
       this.KeyPreview = true;
       this.MaximizeBox = false;
       this.MinimizeBox = false;
       this.Name = "TranslatorHelper";
       this.ShowHint = WeifenLuo.WinFormsUI.Docking.DockState.Document;
       this.ShowInTaskbar = false;
       this.Text = "Translator Helper";
       this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.TranslatorHelper_FormClosing);
       this.Load += new System.EventHandler(this.TranslatorHelper_Load);
       this.contextMenuStripBtnTranslate.ResumeLayout(false);
       this.panelTranslatorTabControl.ResumeLayout(false);
       this.paneltabControlTranslatorHelper.ResumeLayout(false);
       this.panel8.ResumeLayout(false);
       this.tabControlTranslatorHelper.ResumeLayout(false);
       this.tabPageStrings.ResumeLayout(false);
       this.panel1.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.olvTHStrings)).EndInit();
       this.panelSearchInStringsList.ResumeLayout(false);
       this.panelSearchInStringsList.PerformLayout();
       this.tabPageDLStrings.ResumeLayout(false);
       this.panel3.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.olvTHDLStrings)).EndInit();
       this.panelSearchInDLStringsList.ResumeLayout(false);
       this.panelSearchInDLStringsList.PerformLayout();
       this.tabPageILStrings.ResumeLayout(false);
       this.panel2.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.olvTHILStrings)).EndInit();
       this.panelSearchInILStringsList.ResumeLayout(false);
       this.panelSearchInILStringsList.PerformLayout();
       this.tabPageOther.ResumeLayout(false);
       this.panel9.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.olvTHOtherStrings)).EndInit();
       this.panelSearchInOtherStringsList.ResumeLayout(false);
       this.panelSearchInOtherStringsList.PerformLayout();
       this.panelTranslatorMain.ResumeLayout(false);
       this.panelTranslatorMain.PerformLayout();
       this.panelDetailString.ResumeLayout(false);
       this.panel5.ResumeLayout(false);
       this.panel7.ResumeLayout(false);
       ((System.ComponentModel.ISupportInitialize)(this.olvSkyrimDict)).EndInit();
       this.panel6.ResumeLayout(false);
       this.panel6.PerformLayout();
       this.panel4.ResumeLayout(false);
       this.panel4.PerformLayout();
       this.groupBoxTarget.ResumeLayout(false);
       this.groupBoxTarget.PerformLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHSkyrimTargetStrings)).EndInit();
       this.groupBoxSource.ResumeLayout(false);
       this.groupBoxSource.PerformLayout();
       ((System.ComponentModel.ISupportInitialize)(this.olvTHSkyrimSourceStrings)).EndInit();
       this.groupBoxSkyrim.ResumeLayout(false);
       this.groupBoxSkyrim.PerformLayout();
       ((System.ComponentModel.ISupportInitialize)(this.dataSetTH)).EndInit();
       this.ResumeLayout(false);
 }
Exemple #34
0
 /// <summary>
 /// This method is required for Windows Forms designer support.
 /// Do not change the method contents inside the source code editor. The Forms designer might
 /// not be able to load this method if it was changed manually.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserControlFile));
     this.imageList1                 = new System.Windows.Forms.ImageList(this.components);
     this.contextMenuStrip1          = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.toolStripMenuItemOpen      = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemLocation  = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemDelete    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemRemove    = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItemRemoveAll = new System.Windows.Forms.ToolStripMenuItem();
     this.panel1          = new System.Windows.Forms.Panel();
     this.labelTitle      = new System.Windows.Forms.Label();
     this.buttonNew       = new System.Windows.Forms.Button();
     this.buttonOpen      = new System.Windows.Forms.Button();
     this.buttonOption    = new System.Windows.Forms.Button();
     this.buttonHelp      = new System.Windows.Forms.Button();
     this.buttonAbout     = new System.Windows.Forms.Button();
     this.pictureBox1     = new System.Windows.Forms.PictureBox();
     this.panel2          = new System.Windows.Forms.Panel();
     this.objectListView1 = new BrightIdeasSoftware.ObjectListView();
     this.columnName      = new BrightIdeasSoftware.OLVColumn();
     this.columnDate      = new BrightIdeasSoftware.OLVColumn();
     this.columnSize      = new BrightIdeasSoftware.OLVColumn();
     this.panel3          = new System.Windows.Forms.Panel();
     this.labelRecent     = new System.Windows.Forms.Label();
     this.labelSort       = new System.Windows.Forms.Label();
     this.comboBox1       = new System.Windows.Forms.ComboBox();
     this.labelSearch     = new System.Windows.Forms.Label();
     this.textBoxFilter   = new System.Windows.Forms.TextBox();
     this.contextMenuStrip1.SuspendLayout();
     this.panel1.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit();
     this.panel2.SuspendLayout();
     ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).BeginInit();
     this.panel3.SuspendLayout();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ColorDepth       = System.Windows.Forms.ColorDepth.Depth8Bit;
     this.imageList1.ImageSize        = new System.Drawing.Size(16, 16);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.ImageScalingSize = new System.Drawing.Size(24, 24);
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
         this.toolStripMenuItemOpen,
         this.toolStripMenuItemLocation,
         this.toolStripMenuItemDelete,
         this.toolStripMenuItemRemove,
         this.toolStripMenuItemRemoveAll
     });
     this.contextMenuStrip1.Name     = "contextMenuStrip1";
     this.contextMenuStrip1.Size     = new System.Drawing.Size(262, 144);
     this.contextMenuStrip1.Opening += new System.ComponentModel.CancelEventHandler(this.ContextMenuStrip1Opening);
     //
     // toolStripMenuItemOpen
     //
     this.toolStripMenuItemOpen.Name   = "toolStripMenuItemOpen";
     this.toolStripMenuItemOpen.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemOpen.Text   = "Open";
     this.toolStripMenuItemOpen.Click += new System.EventHandler(this.ToolStripMenuItemOpenClick);
     //
     // toolStripMenuItemLocation
     //
     this.toolStripMenuItemLocation.Name   = "toolStripMenuItemLocation";
     this.toolStripMenuItemLocation.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemLocation.Text   = "Go to file location";
     this.toolStripMenuItemLocation.Click += new System.EventHandler(this.ToolStripMenuItemLocationClick);
     //
     // toolStripMenuItemDelete
     //
     this.toolStripMenuItemDelete.Name   = "toolStripMenuItemDelete";
     this.toolStripMenuItemDelete.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemDelete.Text   = "Permanently delete";
     this.toolStripMenuItemDelete.Click += new System.EventHandler(this.ToolStripMenuItemDeleteClick);
     //
     // toolStripMenuItemRemove
     //
     this.toolStripMenuItemRemove.Name   = "toolStripMenuItemRemove";
     this.toolStripMenuItemRemove.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemRemove.Text   = "Remove this from list";
     this.toolStripMenuItemRemove.Click += new System.EventHandler(this.ToolStripMenuItemRemoveClick);
     //
     // toolStripMenuItemRemoveAll
     //
     this.toolStripMenuItemRemoveAll.Name   = "toolStripMenuItemRemoveAll";
     this.toolStripMenuItemRemoveAll.Size   = new System.Drawing.Size(261, 28);
     this.toolStripMenuItemRemoveAll.Text   = "Remove all from list";
     this.toolStripMenuItemRemoveAll.Click += new System.EventHandler(this.ToolStripMenuItemRemoveAllClick);
     //
     // panel1
     //
     this.panel1.BackColor = System.Drawing.Color.LightSkyBlue;
     this.panel1.Controls.Add(this.labelTitle);
     this.panel1.Controls.Add(this.buttonNew);
     this.panel1.Controls.Add(this.buttonOpen);
     this.panel1.Controls.Add(this.buttonOption);
     this.panel1.Controls.Add(this.buttonHelp);
     this.panel1.Controls.Add(this.buttonAbout);
     this.panel1.Controls.Add(this.pictureBox1);
     this.panel1.Dock     = System.Windows.Forms.DockStyle.Left;
     this.panel1.Location = new System.Drawing.Point(0, 0);
     this.panel1.Margin   = new System.Windows.Forms.Padding(0);
     this.panel1.Name     = "panel1";
     this.panel1.Size     = new System.Drawing.Size(300, 600);
     this.panel1.TabIndex = 0;
     //
     // labelTitle
     //
     this.labelTitle.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.labelTitle.Font      = new System.Drawing.Font("Consolas", 18F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
     this.labelTitle.Location  = new System.Drawing.Point(0, 158);
     this.labelTitle.Margin    = new System.Windows.Forms.Padding(10);
     this.labelTitle.Name      = "labelTitle";
     this.labelTitle.Size      = new System.Drawing.Size(300, 50);
     this.labelTitle.TabIndex  = 0;
     this.labelTitle.Text      = "ATWiki";
     this.labelTitle.TextAlign = System.Drawing.ContentAlignment.TopCenter;
     //
     // buttonNew
     //
     this.buttonNew.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                   | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonNew.BackColor = System.Drawing.Color.Transparent;
     this.buttonNew.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonNew.Location  = new System.Drawing.Point(30, 228);
     this.buttonNew.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonNew.Name      = "buttonNew";
     this.buttonNew.Size      = new System.Drawing.Size(240, 40);
     this.buttonNew.TabIndex  = 1;
     this.buttonNew.Text      = "New";
     this.buttonNew.UseVisualStyleBackColor = false;
     this.buttonNew.Click += new System.EventHandler(this.ButtonNewClick);
     //
     // buttonOpen
     //
     this.buttonOpen.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOpen.BackColor = System.Drawing.Color.Transparent;
     this.buttonOpen.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonOpen.Location  = new System.Drawing.Point(30, 288);
     this.buttonOpen.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonOpen.Name      = "buttonOpen";
     this.buttonOpen.Size      = new System.Drawing.Size(240, 40);
     this.buttonOpen.TabIndex  = 2;
     this.buttonOpen.Text      = "Open";
     this.buttonOpen.UseVisualStyleBackColor = false;
     this.buttonOpen.Click += new System.EventHandler(this.ButtonOpenClick);
     //
     // buttonOption
     //
     this.buttonOption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                      | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonOption.BackColor = System.Drawing.Color.Transparent;
     this.buttonOption.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonOption.Location  = new System.Drawing.Point(30, 348);
     this.buttonOption.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonOption.Name      = "buttonOption";
     this.buttonOption.Size      = new System.Drawing.Size(240, 40);
     this.buttonOption.TabIndex  = 3;
     this.buttonOption.Text      = "Option";
     this.buttonOption.UseVisualStyleBackColor = false;
     this.buttonOption.Click += new System.EventHandler(this.ButtonOptionClick);
     //
     // buttonHelp
     //
     this.buttonHelp.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                    | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonHelp.BackColor = System.Drawing.Color.Transparent;
     this.buttonHelp.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonHelp.Location  = new System.Drawing.Point(30, 408);
     this.buttonHelp.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonHelp.Name      = "buttonHelp";
     this.buttonHelp.Size      = new System.Drawing.Size(240, 40);
     this.buttonHelp.TabIndex  = 4;
     this.buttonHelp.Text      = "Help";
     this.buttonHelp.UseVisualStyleBackColor = true;
     this.buttonHelp.Click += new System.EventHandler(this.ButtonHelpClick);
     //
     // buttonAbout
     //
     this.buttonAbout.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonAbout.BackColor = System.Drawing.Color.Transparent;
     this.buttonAbout.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
     this.buttonAbout.Location  = new System.Drawing.Point(30, 468);
     this.buttonAbout.Margin    = new System.Windows.Forms.Padding(10);
     this.buttonAbout.Name      = "buttonAbout";
     this.buttonAbout.Size      = new System.Drawing.Size(240, 40);
     this.buttonAbout.TabIndex  = 5;
     this.buttonAbout.Text      = "About";
     this.buttonAbout.UseVisualStyleBackColor = false;
     this.buttonAbout.Click += new System.EventHandler(this.ButtonAboutClick);
     //
     // pictureBox1
     //
     this.pictureBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                                                                     | System.Windows.Forms.AnchorStyles.Right)));
     this.pictureBox1.Image    = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image")));
     this.pictureBox1.Location = new System.Drawing.Point(0, 10);
     this.pictureBox1.Margin   = new System.Windows.Forms.Padding(10);
     this.pictureBox1.Name     = "pictureBox1";
     this.pictureBox1.Size     = new System.Drawing.Size(300, 128);
     this.pictureBox1.SizeMode = System.Windows.Forms.PictureBoxSizeMode.CenterImage;
     this.pictureBox1.TabIndex = 29;
     this.pictureBox1.TabStop  = false;
     //
     // panel2
     //
     this.panel2.BackColor = System.Drawing.Color.Transparent;
     this.panel2.Controls.Add(this.objectListView1);
     this.panel2.Controls.Add(this.panel3);
     this.panel2.Dock     = System.Windows.Forms.DockStyle.Fill;
     this.panel2.Location = new System.Drawing.Point(300, 0);
     this.panel2.Margin   = new System.Windows.Forms.Padding(0);
     this.panel2.Name     = "panel2";
     this.panel2.Padding  = new System.Windows.Forms.Padding(10, 0, 0, 0);
     this.panel2.Size     = new System.Drawing.Size(724, 600);
     this.panel2.TabIndex = 0;
     //
     // objectListView1
     //
     this.objectListView1.AllColumns.Add(this.columnName);
     this.objectListView1.AllColumns.Add(this.columnDate);
     this.objectListView1.AllColumns.Add(this.columnSize);
     this.objectListView1.BackColor            = System.Drawing.SystemColors.Window;
     this.objectListView1.BorderStyle          = System.Windows.Forms.BorderStyle.None;
     this.objectListView1.CellEditUseWholeCell = false;
     this.objectListView1.CheckedAspectName    = "";
     this.objectListView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.columnName,
         this.columnDate,
         this.columnSize
     });
     this.objectListView1.Cursor                          = System.Windows.Forms.Cursors.Default;
     this.objectListView1.Dock                            = System.Windows.Forms.DockStyle.Fill;
     this.objectListView1.FullRowSelect                   = true;
     this.objectListView1.Location                        = new System.Drawing.Point(10, 44);
     this.objectListView1.Margin                          = new System.Windows.Forms.Padding(15);
     this.objectListView1.MultiSelect                     = false;
     this.objectListView1.Name                            = "objectListView1";
     this.objectListView1.OverlayText.BorderWidth         = 2F;
     this.objectListView1.OverlayText.Text                = "";
     this.objectListView1.ShowGroups                      = false;
     this.objectListView1.ShowHeaderInAllViews            = false;
     this.objectListView1.ShowItemToolTips                = true;
     this.objectListView1.Size                            = new System.Drawing.Size(714, 556);
     this.objectListView1.TabIndex                        = 1;
     this.objectListView1.UseCompatibleStateImageBehavior = false;
     this.objectListView1.UseFiltering                    = true;
     this.objectListView1.UseHotItem                      = true;
     this.objectListView1.UseTranslucentHotItem           = true;
     this.objectListView1.UseTranslucentSelection         = true;
     this.objectListView1.View                            = System.Windows.Forms.View.Details;
     this.objectListView1.CellClick                      += new System.EventHandler <BrightIdeasSoftware.CellClickEventArgs>(this.ObjectListView1CellClick);
     this.objectListView1.CellRightClick                 += new System.EventHandler <BrightIdeasSoftware.CellRightClickEventArgs>(this.ObjectListView1CellRightClick);
     this.objectListView1.SizeChanged                    += new System.EventHandler(this.ObjectListView1SizeChanged);
     //
     // columnName
     //
     this.columnName.AspectName   = "Name";
     this.columnName.MinimumWidth = 40;
     this.columnName.Text         = "Name";
     this.columnName.ToolTipText  = "";
     this.columnName.Width        = 400;
     //
     // columnDate
     //
     this.columnDate.AspectName   = "Date";
     this.columnDate.MinimumWidth = 40;
     this.columnDate.Text         = "Date";
     this.columnDate.ToolTipText  = "";
     this.columnDate.Width        = 400;
     //
     // columnSize
     //
     this.columnSize.AspectName   = "Size";
     this.columnSize.MinimumWidth = 40;
     this.columnSize.Text         = "Size";
     this.columnSize.ToolTipText  = "";
     this.columnSize.Width        = 400;
     //
     // panel3
     //
     this.panel3.Controls.Add(this.labelRecent);
     this.panel3.Controls.Add(this.labelSort);
     this.panel3.Controls.Add(this.comboBox1);
     this.panel3.Controls.Add(this.labelSearch);
     this.panel3.Controls.Add(this.textBoxFilter);
     this.panel3.Dock     = System.Windows.Forms.DockStyle.Top;
     this.panel3.Location = new System.Drawing.Point(10, 0);
     this.panel3.Name     = "panel3";
     this.panel3.Size     = new System.Drawing.Size(714, 44);
     this.panel3.TabIndex = 1;
     //
     // labelRecent
     //
     this.labelRecent.AutoSize = true;
     this.labelRecent.Location = new System.Drawing.Point(8, 13);
     this.labelRecent.Margin   = new System.Windows.Forms.Padding(8, 13, 8, 8);
     this.labelRecent.Name     = "labelRecent";
     this.labelRecent.Size     = new System.Drawing.Size(152, 18);
     this.labelRecent.TabIndex = 0;
     this.labelRecent.Text     = "Recent Documents";
     //
     // labelSort
     //
     this.labelSort.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelSort.AutoSize = true;
     this.labelSort.Location = new System.Drawing.Point(273, 13);
     this.labelSort.Margin   = new System.Windows.Forms.Padding(8, 13, 8, 8);
     this.labelSort.Name     = "labelSort";
     this.labelSort.Size     = new System.Drawing.Size(44, 18);
     this.labelSort.TabIndex = 1;
     this.labelSort.Text     = "Sort";
     //
     // comboBox1
     //
     this.comboBox1.Anchor            = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.comboBox1.BackColor         = System.Drawing.Color.LightSkyBlue;
     this.comboBox1.DropDownStyle     = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.comboBox1.FlatStyle         = System.Windows.Forms.FlatStyle.Flat;
     this.comboBox1.FormattingEnabled = true;
     this.comboBox1.Items.AddRange(new object[] {
         "Name▲",
         "Name▼",
         "Date▲",
         "Date▼",
         "Size▲",
         "Size▼"
     });
     this.comboBox1.Location = new System.Drawing.Point(345, 9);
     this.comboBox1.Margin   = new System.Windows.Forms.Padding(8, 9, 8, 8);
     this.comboBox1.Name     = "comboBox1";
     this.comboBox1.Size     = new System.Drawing.Size(115, 26);
     this.comboBox1.TabIndex = 2;
     this.comboBox1.SelectionChangeCommitted += new System.EventHandler(this.ComboBox1SelectionChangeCommitted);
     //
     // labelSearch
     //
     this.labelSearch.Anchor   = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.labelSearch.AutoSize = true;
     this.labelSearch.Location = new System.Drawing.Point(485, 13);
     this.labelSearch.Margin   = new System.Windows.Forms.Padding(20, 13, 8, 8);
     this.labelSearch.Name     = "labelSearch";
     this.labelSearch.Size     = new System.Drawing.Size(62, 18);
     this.labelSearch.TabIndex = 3;
     this.labelSearch.Text     = "Search";
     //
     // textBoxFilter
     //
     this.textBoxFilter.Anchor       = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
     this.textBoxFilter.BackColor    = System.Drawing.Color.LightSkyBlue;
     this.textBoxFilter.Location     = new System.Drawing.Point(557, 8);
     this.textBoxFilter.Margin       = new System.Windows.Forms.Padding(8, 8, 20, 8);
     this.textBoxFilter.Name         = "textBoxFilter";
     this.textBoxFilter.Size         = new System.Drawing.Size(150, 28);
     this.textBoxFilter.TabIndex     = 4;
     this.textBoxFilter.TextChanged += new System.EventHandler(this.TextBoxFilterTextChanged);
     //
     // UserControlFile
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.panel2);
     this.Controls.Add(this.panel1);
     this.Name  = "UserControlFile";
     this.Size  = new System.Drawing.Size(1024, 600);
     this.Load += new System.EventHandler(this.UserControlFileLoad);
     this.contextMenuStrip1.ResumeLayout(false);
     this.panel1.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit();
     this.panel2.ResumeLayout(false);
     ((System.ComponentModel.ISupportInitialize)(this.objectListView1)).EndInit();
     this.panel3.ResumeLayout(false);
     this.panel3.PerformLayout();
     this.ResumeLayout(false);
 }
Exemple #35
0
 void InitializeComponent()
 {
     this.components     = new System.ComponentModel.Container();
     this.olvReport      = new BrightIdeasSoftware.ObjectListView();
     this.colKpiTitles   = new BrightIdeasSoftware.OLVColumn();
     this.collAllTrades  = new BrightIdeasSoftware.OLVColumn();
     this.colLongTrades  = new BrightIdeasSoftware.OLVColumn();
     this.colShortTrades = new BrightIdeasSoftware.OLVColumn();
     this.colBuyHold     = new BrightIdeasSoftware.OLVColumn();
     this.toolTip1       = new System.Windows.Forms.ToolTip(this.components);
     ((System.ComponentModel.ISupportInitialize)(this.olvReport)).BeginInit();
     this.SuspendLayout();
     //
     // olvReport
     //
     this.olvReport.BorderStyle = System.Windows.Forms.BorderStyle.None;
     this.olvReport.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
         this.colKpiTitles,
         this.collAllTrades,
         this.colLongTrades,
         this.colShortTrades,
         this.colBuyHold
     });
     this.olvReport.Dock                            = System.Windows.Forms.DockStyle.Fill;
     this.olvReport.FullRowSelect                   = true;
     this.olvReport.HeaderUsesThemes                = false;
     this.olvReport.HideSelection                   = false;
     this.olvReport.IncludeColumnHeadersInCopy      = true;
     this.olvReport.Location                        = new System.Drawing.Point(0, 0);
     this.olvReport.MultiSelect                     = false;
     this.olvReport.Name                            = "olvReport";
     this.olvReport.ShowCommandMenuOnRightClick     = true;
     this.olvReport.ShowItemToolTips                = true;
     this.olvReport.Size                            = new System.Drawing.Size(654, 374);
     this.olvReport.TabIndex                        = 3;
     this.olvReport.TintSortColumn                  = true;
     this.olvReport.UseCompatibleStateImageBehavior = false;
     this.olvReport.UseFilterIndicator              = true;
     this.olvReport.View                            = System.Windows.Forms.View.Details;
     this.olvReport.SelectedIndexChanged           += new System.EventHandler(this.lvReport_SelectedIndexChanged);
     //
     // colKpiTitles
     //
     this.colKpiTitles.CellPadding = null;
     this.colKpiTitles.Text        = "";
     this.colKpiTitles.Width       = 85;
     //
     // collAllTrades
     //
     this.collAllTrades.CellPadding     = null;
     this.collAllTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.collAllTrades.Text            = "All Trades";
     this.collAllTrades.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.collAllTrades.Width           = 63;
     //
     // colLongTrades
     //
     this.colLongTrades.CellPadding     = null;
     this.colLongTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.colLongTrades.Text            = "Long Trades";
     this.colLongTrades.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.colLongTrades.Width           = 63;
     //
     // colShortTrades
     //
     this.colShortTrades.CellPadding     = null;
     this.colShortTrades.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.colShortTrades.Text            = "Short Trades";
     this.colShortTrades.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.colShortTrades.Width           = 63;
     //
     // colBuyHold
     //
     this.colBuyHold.CellPadding     = null;
     this.colBuyHold.HeaderTextAlign = System.Windows.Forms.HorizontalAlignment.Right;
     this.colBuyHold.Text            = "Buy & Hold";
     this.colBuyHold.TextAlign       = System.Windows.Forms.HorizontalAlignment.Right;
     this.colBuyHold.Width           = 63;
     //
     // Performance
     //
     this.BackColor = System.Drawing.SystemColors.Window;
     this.Controls.Add(this.olvReport);
     this.Name = "Performance";
     this.Size = new System.Drawing.Size(654, 374);
     ((System.ComponentModel.ISupportInitialize)(this.olvReport)).EndInit();
     this.ResumeLayout(false);
 }