Esempio n. 1
0
        /// <summary>
        ///     The intialization constructor
        /// </summary>
        /// <param name="uriData">The URI to downloadable resource</param>
        /// <param name="lvDetails">The list view wich holds status info</param>
        public DownloaderTask(Uri uriData, System.Windows.Forms.ListView lvDetails)
        {
            #region Prepare for download
            this.uriData   = uriData;
            fileName       = this.uriData.Segments[this.uriData.Segments.Length - 1];
            webClient      = new WebClient();
            this.lvDetails = lvDetails;
            #endregion

            #region Assign call backs
            if (lvDetails != null)
            {
                webClient.DownloadProgressChanged += new DownloadProgressChangedEventHandler(webClient_DownloadProgressChanged);
                webClient.DownloadFileCompleted   += new System.ComponentModel.AsyncCompletedEventHandler(webClient_DownloadFileCompleted);

                associatedGroup  = lvDetails.Groups.Add((new Guid()).ToString(), String.Format("{0} - 开始下载 ... ", fileName));
                descriptionItems = new List <System.Windows.Forms.ListViewItem>();
                descriptionItems.Add(new System.Windows.Forms.ListViewItem(uriData.OriginalString, associatedGroup)); // DETAIL_URI
                descriptionItems.Add(new System.Windows.Forms.ListViewItem("已下载 0/? 字节", associatedGroup));           // DETAIL_BYTES

                descriptionItems.Add(new System.Windows.Forms.ListViewItem("取消", associatedGroup));                   // DETAIL_CANCEL
                descriptionItems[DETAIL_CANCEL].BackColor = System.Drawing.Color.Silver;
                descriptionItems[DETAIL_CANCEL].ForeColor = System.Drawing.Color.Blue;
                descriptionItems[DETAIL_URI].ImageIndex   = 0;

                lvDetails.Items.AddRange(descriptionItems.ToArray());
                lvDetails.Update();
            }
            #endregion

            #region Start file download
            webClient.DownloadFileAsync(uriData, fileName, associatedGroup);
            //System.IO.File.SetLastWriteTime(fileName, DateTime.Now);
            #endregion
        }
Esempio n. 2
0
 //load giao diện
 internal void loadGiaoDien(int ID, System.Windows.Forms.ListView listViewdanhsach)
 {
     //Load danh sách bạn bè
     bsl.loadListViewChat(ID + "", listViewdanhsach);
     //Bật user đang chat
     bsl.isState("true", ID + "");
 }
Esempio n. 3
0
        public void DelegateListViewItem(System.Windows.Forms.ListViewItem p_oItem)
        {
            int x;

            System.Windows.Forms.ListView oLv = (System.Windows.Forms.ListView)frmMain.g_oDelegate.GetListView(p_oItem.ListView, false);
            int  intCount  = (int)frmMain.g_oDelegate.GetListViewItemSubItemsPropertyValue(p_oItem, "Count", false);
            int  intRow    = (int)frmMain.g_oDelegate.GetListViewItemPropertyValue(oLv, p_oItem.Index, "Index", false);
            bool bSelected = (bool)frmMain.g_oDelegate.GetListViewItemPropertyValue(oLv, p_oItem.Index, "Selected", false);

            if (this.m_intSelectedRow != -1 && CustomFullRowSelect)
            {
                //color the unselected row
                if (bSelected && intRow != this.m_intSelectedRow)
                {
                    for (x = 0; x <= intCount - 1; x++)
                    {
                        if (this.m_intSelectedRow <= this.ReferenceListView.Items.Count - 1)
                        {
                            DelegateListViewSubItem(ReferenceListView.Items[m_intSelectedRow], x);
                        }
                    }
                }
            }

            for (x = 0; x <= intCount - 1; x++)
            {
                DelegateListViewSubItem(p_oItem, x);
            }

            if (bSelected)
            {
                m_intSelectedRow = intRow;
            }
        }
Esempio n. 4
0
        public void DelegateListViewSubItem(System.Windows.Forms.ListViewItem p_oItem, int p_intRow, int p_intCol)
        {
            int intRow = p_intRow;

            System.Windows.Forms.ListView     oLv     = (System.Windows.Forms.ListView)frmMain.g_oDelegate.GetListView(p_oItem.ListView, false);
            System.Windows.Forms.ListViewItem oLvItem = (System.Windows.Forms.ListViewItem)frmMain.g_oDelegate.GetListViewItem(oLv, intRow, false);
            int intIndex = (int)frmMain.g_oDelegate.GetListViewItemPropertyValue(oLv, intRow, "Index", false);

            if (this.m_oRowCollection.Item(intRow).m_oColumnCollection.Item(p_intCol).UpdateColumn)
            {
                if ((bool)frmMain.g_oDelegate.GetListViewItemPropertyValue(oLv, intIndex, "Selected", false) && CustomFullRowSelect)
                {
                    frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "BackColor", this.m_oRowCollection.Item(intRow).m_oColumnCollection.Item(p_intCol).ReferenceSelectedRowBackgroundColor);
                    frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "ForeColor", this.ReferenceSelectedRowForegroundColor);
                }
                else
                {
                    if (intRow % 2 == 0)
                    {
                        frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "BackColor", this.m_oRowCollection.Item(intRow).m_oColumnCollection.Item(p_intCol).ReferenceBackgroundColor);
                        frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "ForeColor", ReferenceForegroundColor);
                    }
                    else
                    {
                        frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "BackColor", this.m_oRowCollection.Item(intRow).m_oColumnCollection.Item(p_intCol).ReferenceAlternateBackgroundColor);
                        frmMain.g_oDelegate.SetListViewSubItemPropertyValue(oLv, intRow, p_intCol, "ForeColor", ReferenceAlternateForegroundColor);
                    }
                }
            }
        }
Esempio n. 5
0
        private void m_formFProdutosVincular_eCallRefreshProdutos(ref System.Windows.Forms.ListView lvProdutos)
        {
            System.Windows.Forms.ListViewItem lviProduto = null;
            lvProdutos.Items.Clear();
            System.Collections.ArrayList arlProdutos = null;
            if (m_bMostrarProdutosVinculados)
            {
                arlProdutos = arlProdutosFatura(false);
            }
            else
            {
                arlProdutos = arlProdutosFaturaSemVinculo(false);
            }

            for (int i = 0; i < arlProdutos.Count; i++)
            {
                mdlDataBaseAccess.Tabelas.XsdTbProdutosFaturaComercial.tbProdutosFaturaComercialRow dtrwProdutoFatura = (mdlDataBaseAccess.Tabelas.XsdTbProdutosFaturaComercial.tbProdutosFaturaComercialRow)arlProdutos[i];
                mdlDataBaseAccess.Tabelas.XsdTbProdutos.tbProdutosRow dtrwProduto = m_typDatSetProdutos.tbProdutos.FindByidExportadoridProduto(m_nIdExportador, dtrwProdutoFatura.idProduto);
                if (dtrwProduto != null)
                {
                    if (!dtrwProdutoFatura.IsmstrDescricaoNull())
                    {
                        lviProduto = lvProdutos.Items.Add(dtrwProdutoFatura.mstrDescricao);
                    }
                    else
                    {
                        lviProduto = lvProdutos.Items.Add(dtrwProduto.mstrDescricao);
                    }
                    lviProduto.Tag = dtrwProdutoFatura.idOrdem;
                }
            }
        }
Esempio n. 6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewDetails = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // listViewDetails
     //
     this.listViewDetails.CheckBoxes = true;
     this.listViewDetails.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewDetails.FullRowSelect = true;
     this.listViewDetails.Location = new System.Drawing.Point(0, 0);
     this.listViewDetails.Name = "listViewDetails";
     this.listViewDetails.Size = new System.Drawing.Size(472, 456);
     this.listViewDetails.TabIndex = 0;
     this.listViewDetails.View = System.Windows.Forms.View.Details;
     //
     // ListViewTestForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 15);
     this.ClientSize = new System.Drawing.Size(472, 456);
     this.Controls.Add(this.listViewDetails);
     this.Name = "ListViewTestForm";
     this.Text = "ListViewTestForm";
     this.ResumeLayout(false);
 }
 public static void DeselectAllItems(System.Windows.Forms.ListView listView)
 {
     foreach (System.Windows.Forms.ListViewItem item in listView.Items)
     {
         item.Selected = false;
     }
 }
Esempio n. 8
0
        public List <string> getAnamnesis(Conexion conn, System.Windows.Forms.ListView listView)
        {
            List <string> listData = new List <string>();

            try
            {
                conn.getDataSet().Clear();
                string stringSQL = "SELECT cedula_paciente, medico_cabecera, tipo_sangre, persona_avisar, telefono_emergencia,"
                                   + " direccion, parentesco, queja_principal, historia_queja_historia"
                                   + " FROM tbl_anamnesis "
                                   + " WHERE cedula_paciente = '" + listView.SelectedItems[0].Text + "'";
                conn.querySQL(stringSQL);
                conn.fillDataset("", "");

                if (conn.getDataSet().Tables.Count != 0)
                {
                    for (int cont = 0; cont < conn.getDataSet().Tables[0].Columns.Count; cont++)
                    {
                        listData.Add(conn.getDataSet().Tables[0].Rows[0].ItemArray[cont].ToString());
                    }
                }
            }
            catch (Exception ex)
            {
                mssg.showMessage(ex.Message, "error", "");
            }

            return(listData);
        }
Esempio n. 9
0
        public static void DataSave(System.Windows.Forms.ListView SavingListView, string FilePath)
        {
            if (String.IsNullOrEmpty(FilePath))
            {
                return;
            }

            if (File.Exists(FilePath))
            {
                File.Delete(FilePath);
            }

            try
            {
                FileStream   fs = new FileStream(FilePath, FileMode.Create);
                BinaryWriter bw = new BinaryWriter(fs);

                foreach (System.Windows.Forms.ListViewItem LVItem in SavingListView.Items)
                {
                    foreach (System.Windows.Forms.ListViewItem.ListViewSubItem LVSubItem in LVItem.SubItems)
                    {
                        bw.Write((String)MySecurity.EncryptString(LVSubItem.Text.Trim()));
                    }
                    //bw.Write((String)MySecurity.EncryptString((String)LVItem.Tag));
                    bw.Flush();
                }

                bw.Close();
                fs.Close();
            }
            catch (Exception ex)
            {
                Console.WriteLine(">>>Message=" + ex.Message + "\r\nStacktrace:" + ex.StackTrace);
            }
        }
Esempio n. 10
0
        private void RefreshREsEspelhos(System.Windows.Forms.ListView lvResEspelhos, int index)
        {
            mdlDataBaseAccess.Tabelas.XsdTbREsEspelhos typDatSetREsEspelhos = this.TypDatSetTbREsEspelhos;
            lvResEspelhos.Items.Clear();
            for (int i = 0; i < typDatSetREsEspelhos.tbREsEspelhos.Count; i++)
            {
                mdlDataBaseAccess.Tabelas.XsdTbREsEspelhos.tbREsEspelhosRow dtrwREEspelho = typDatSetREsEspelhos.tbREsEspelhos[i];
                if (dtrwREEspelho.RowState == System.Data.DataRowState.Deleted)
                {
                    continue;
                }
                System.Windows.Forms.ListViewItem lviItem = lvResEspelhos.Items.Add(dtrwREEspelho.nIdReEspelho.ToString("00000"));
                lviItem.Tag = dtrwREEspelho.nIdReEspelho;
                //Inserting Data
                lviItem.SubItems.Add("Estado");
                lviItem.SubItems.Add("Numero");
                lviItem.SubItems.Add("PE");
                lviItem.SubItems.Add(dtrwREEspelho.dtCriacao.ToString("dd/MM/yyyy"));

                if (dtrwREEspelho.nIdReEspelho == index)
                {
                    lviItem.Selected = true;
                    lvResEspelhos.EnsureVisible(lviItem.Index);
                }
            }
        }
Esempio n. 11
0
        private void RefreshMoedas(ref System.Windows.Forms.ListView lvMoedas)
        {
            try
            {
                System.Windows.Forms.ListViewItem itemListView;

                lvMoedas.Items.Clear();
                System.Collections.ArrayList arlOrderField = new System.Collections.ArrayList();
                arlOrderField.Add("mstrDescricao");
                System.Collections.ArrayList arlOrderDirection = new System.Collections.ArrayList();
                arlOrderDirection.Add(mdlDataBaseAccess.TipoOrdenacao.Crescente);
                m_cls_dba_ConnectionDB.FonteDosDados = mdlDataBaseAccess.FonteDados.Resource;
                mdlDataBaseAccess.Tabelas.XsdTbMoedas tbMoedas = m_cls_dba_ConnectionDB.GetTbMoedas(null, null, null, arlOrderField, arlOrderDirection);
                m_cls_dba_ConnectionDB.FonteDosDados = mdlDataBaseAccess.FonteDados.DataBase;
                for (int nCont = 0; nCont < tbMoedas.tbMoedas.Rows.Count; nCont++)
                {
                    itemListView     = lvMoedas.Items.Add(tbMoedas.tbMoedas.Rows[nCont]["mstrDescricao"].ToString());
                    itemListView.Tag = tbMoedas.tbMoedas.Rows[nCont]["idMoeda"].ToString();
                    itemListView.SubItems.Add(tbMoedas.tbMoedas.Rows[nCont]["simbolo"].ToString());
                }
            }catch (Exception erro) {
                Object err = (Object)erro;
                m_cls_ter_tratadorErro.trataErro(ref err);
            }
        }
Esempio n. 12
0
        private void vContatosRefresh(int nIdTerminal, ref System.Windows.Forms.ListView lvContatos)
        {
            lvContatos.Items.Clear();

            // Sorting
            System.Collections.SortedList sortListContatos = new System.Collections.SortedList();
            foreach (mdlDataBaseAccess.Tabelas.XsdTbTerminaisContatos.tbTerminaisContatosRow dtrwContato in m_typDatSetTerminaisContatos.tbTerminaisContatos.Rows)
            {
                if ((dtrwContato.RowState != System.Data.DataRowState.Deleted) && (dtrwContato.nIdTerminal == nIdTerminal) && (!dtrwContato.IsstrNomeNull()))
                {
                    if (!sortListContatos.ContainsKey(dtrwContato.strNome))
                    {
                        sortListContatos.Add(dtrwContato.strNome, dtrwContato);
                    }
                }
            }

            // Insert
            for (int i = 0; i < sortListContatos.Count; i++)
            {
                mdlDataBaseAccess.Tabelas.XsdTbTerminaisContatos.tbTerminaisContatosRow dtrwContatoInserir = (mdlDataBaseAccess.Tabelas.XsdTbTerminaisContatos.tbTerminaisContatosRow)sortListContatos.GetByIndex(i);
                System.Windows.Forms.ListViewItem lviInsert = lvContatos.Items.Add(dtrwContatoInserir.strNome);
                lviInsert.Tag = dtrwContatoInserir.nIdContato;
                if ((m_nIdSelectContato != -1) && (dtrwContatoInserir.nIdContato == m_nIdSelectContato))
                {
                    lviInsert.Selected = true;
                    m_nIdSelectContato = -1;
                }
            }
        }
Esempio n. 13
0
        protected override void carregaDadosInterface(ref System.Windows.Forms.ListView lvListView, ref System.Windows.Forms.GroupBox gbFields)
        {
            try
            {
                System.Windows.Forms.ListViewItem lviIdioma;

                lvListView.Items.Clear();

                lviIdioma            = lvListView.Items.Add("Português");
                lviIdioma.Tag        = 1;
                lviIdioma.ImageIndex = (1 - 1);
                if ((int)lviIdioma.Tag == m_nIdioma)
                {
                    lviIdioma.Selected = true;
                    m_strIdioma        = lviIdioma.Text;
                }
                lviIdioma            = lvListView.Items.Add("Inglês");
                lviIdioma.Tag        = 3;
                lviIdioma.ImageIndex = (3 - 1);
                if ((int)lviIdioma.Tag == m_nIdioma)
                {
                    lviIdioma.Selected = true;
                    m_strIdioma        = lviIdioma.Text;
                }
                carregaDadosInterfaceEspecificos(ref gbFields);
            }catch (Exception err) {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
        }
Esempio n. 14
0
 public CFormControlesEventos(CViewsManager vm)
 {
     view = (vm.getFirstView("GestorControles.FormControlesEventos") != null)? vm.getFirstView("GestorControles.FormControlesEventos"): vm.AddView("GestorControles.FormControlesEventos");
     FormControlesEventos      = (System.Windows.Forms.Form)view.getCtrl("GestorControles.FormControlesEventos");
     FormControlesEventos_cstr = view.getCtrlStruct("GestorControles.FormControlesEventos");
     PRight                 = (System.Windows.Forms.Panel)view.getCtrl("PRight");
     PRight_cstr            = view.getCtrlStruct("PRight");
     PEventBottom           = (System.Windows.Forms.Panel)view.getCtrl("PEventBottom");
     PEventBottom_cstr      = view.getCtrlStruct("PEventBottom");
     PEventsGrid            = (System.Windows.Forms.Panel)view.getCtrl("PEventsGrid");
     PEventsGrid_cstr       = view.getCtrlStruct("PEventsGrid");
     DG_EventosControl      = (System.Windows.Forms.DataGridView)view.getCtrl("DG_EventosControl");
     DG_EventosControl_cstr = view.getCtrlStruct("DG_EventosControl");
     panel1                 = (System.Windows.Forms.Panel)view.getCtrl("panel1");
     panel1_cstr            = view.getCtrlStruct("panel1");
     BGuardar               = (System.Windows.Forms.Button)view.getCtrl("BGuardar");
     BGuardar_cstr          = view.getCtrlStruct("BGuardar");
     PTopEvent_Consult      = (System.Windows.Forms.Panel)view.getCtrl("PTopEvent_Consult");
     PTopEvent_Consult_cstr = view.getCtrlStruct("PTopEvent_Consult");
     toolStrip1             = (System.Windows.Forms.ToolStrip)view.getCtrl("toolStrip1");
     toolStrip1_cstr        = view.getCtrlStruct("toolStrip1");
     ListaEventos           = (System.Windows.Forms.ListView)view.getCtrl("ListaEventos");
     ListaEventos_cstr      = view.getCtrlStruct("ListaEventos");
     PLeft             = (System.Windows.Forms.Panel)view.getCtrl("PLeft");
     PLeft_cstr        = view.getCtrlStruct("PLeft");
     TV_Controles      = (System.Windows.Forms.TreeView)view.getCtrl("TV_Controles");
     TV_Controles_cstr = view.getCtrlStruct("TV_Controles");
 }
Esempio n. 15
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmSpyware));
     this.spywareLst = new System.Windows.Forms.ListView();
     this.colSpyware = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colFilePath = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // spywareLst
     //
     resources.ApplyResources(this.spywareLst, "spywareLst");
     this.spywareLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colSpyware,
     this.colFilePath});
     this.spywareLst.Name = "spywareLst";
     this.spywareLst.UseCompatibleStateImageBehavior = false;
     this.spywareLst.View = System.Windows.Forms.View.Details;
     //
     // colSpyware
     //
     resources.ApplyResources(this.colSpyware, "colSpyware");
     //
     // colFilePath
     //
     resources.ApplyResources(this.colFilePath, "colFilePath");
     //
     // FrmSpyware
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.spywareLst);
     this.Name = "FrmSpyware";
     this.ShowIcon = false;
     this.ResumeLayout(false);
 }
Esempio n. 16
0
        public static void SetListViewImage(System.Windows.Forms.ListView lst, string ImagePath, ImagePosition Position)
        {
            int x = 0;
            int y = 0;

            GetImageLocation(Position, ref x, ref y);

            try{
                LVBKIMAGE apiItem = new LVBKIMAGE();
                apiItem.pszImage       = ImagePath + Convert.ToChar(0);
                apiItem.cchImageMax    = ImagePath.Length;
                apiItem.ulFlags        = LVBKIF_SOURCE_URL | LVBKIF_STYLE_NORMAL;
                apiItem.xOffsetPercent = x;
                apiItem.yOffsetPercent = y;

                // Set the background colour of the ListView to 0XFFFFFFFF (-1) so it will be transparent
                int clear = CLR_NONE;
                SendMessage(lst.Handle, LVM_SETTEXTBKCOLOR, 0, ref clear);

                SendMessage(lst.Handle, LVM_SETBKIMAGE, 0, ref apiItem);
            }
            catch (Exception ex) {
                throw new System.Exception("An exception in ListViewAPI.SetListViewImage occured: " + ex.Message);
            }
        }
Esempio n. 17
0
        public List <string> getTratamiento(Conexion conn, System.Windows.Forms.ListView listView)
        {
            List <string> listData = new List <string>();

            try
            {
                conn.getDataSet().Clear();
                string stringSQL = "SELECT nombre_tratamiento, precio "
                                   + "FROM tbl_tratamiento"
                                   + " WHERE nombre_tratamiento = '" + listView.SelectedItems[0].Text + "'";
                conn.querySQL(stringSQL);
                conn.fillDataset("", "");

                if (conn.getDataSet().Tables.Count != 0)
                {
                    for (int cont = 0; cont < conn.getDataSet().Tables[0].Columns.Count; cont++)
                    {
                        listData.Add(conn.getDataSet().Tables[0].Rows[0].ItemArray[cont].ToString());
                    }
                }
            }
            catch (Exception ex)
            {
                mssg.showMessage(ex.Message, "error", "");
            }

            return(listData);
        }
Esempio n. 18
0
        public static void SetSortIcon(this System.Windows.Forms.ListView ListViewControl, int ColumnIndex, System.Windows.Forms.SortOrder Order)
        {
            IntPtr ColumnHeader = SendMessage(ListViewControl.Handle, LVM_GETHEADER, IntPtr.Zero, IntPtr.Zero);

            for (int ColumnNumber = 0; ColumnNumber <= ListViewControl.Columns.Count - 1; ColumnNumber++)
            {
                IntPtr   ColumnPtr = new IntPtr(ColumnNumber);
                LVCOLUMN lvColumn  = new LVCOLUMN();
                lvColumn.mask = HDI_FORMAT;
                SendMessageLVCOLUMN(ColumnHeader, HDM_GETITEM, ColumnPtr, ref lvColumn);

                if (!(Order == System.Windows.Forms.SortOrder.None) && ColumnNumber == ColumnIndex)
                {
                    switch (Order)
                    {
                    case System.Windows.Forms.SortOrder.Ascending:
                        lvColumn.fmt &= ~HDF_SORTDOWN;
                        lvColumn.fmt |= HDF_SORTUP;
                        break;

                    case System.Windows.Forms.SortOrder.Descending:
                        lvColumn.fmt &= ~HDF_SORTUP;
                        lvColumn.fmt |= HDF_SORTDOWN;
                        break;
                    }
                }
                else
                {
                    lvColumn.fmt &= ~HDF_SORTDOWN & ~HDF_SORTUP;
                }

                SendMessageLVCOLUMN(ColumnHeader, HDM_SETITEM, ColumnPtr, ref lvColumn);
            }
        }
Esempio n. 19
0
        protected virtual void carregaDadosInterface(ref System.Windows.Forms.ListView lvListView, ref System.Windows.Forms.GroupBox gbFields)
        {
            try
            {
                System.Windows.Forms.ListViewItem lviIdioma;
                mdlDataBaseAccess.Tabelas.XsdTbIdiomas.tbIdiomasRow dtrwRowTbIdiomas;

                lvListView.Items.Clear();

                for (int nCont = 0; nCont < m_typDatSetTbIdiomas.tbIdiomas.Rows.Count; nCont++)
                {
                    dtrwRowTbIdiomas = (mdlDataBaseAccess.Tabelas.XsdTbIdiomas.tbIdiomasRow)m_typDatSetTbIdiomas.tbIdiomas.Rows[nCont];
                    if (!dtrwRowTbIdiomas.IsmstrIdiomaNull())
                    {
                        if (bIdiomaDisponivel(dtrwRowTbIdiomas.idIdioma))
                        {
                            lviIdioma            = lvListView.Items.Add(dtrwRowTbIdiomas.mstrIdioma);
                            lviIdioma.Tag        = dtrwRowTbIdiomas.idIdioma;
                            lviIdioma.ImageIndex = dtrwRowTbIdiomas.idIdioma - 1;
                            if ((int)lviIdioma.Tag == m_nIdioma)
                            {
                                lviIdioma.Selected = true;
                                m_strIdioma        = dtrwRowTbIdiomas.mstrIdioma;
                            }
                        }
                    }
                }
                carregaDadosInterfaceEspecificos(ref gbFields);
            }
            catch (Exception err)
            {
                Object erro = err;
                m_cls_ter_tratadorErro.trataErro(ref erro);
            }
        }
Esempio n. 20
0
 public ListViewHelper(System.Windows.Forms.ListView view)
 {
     fview             = view;
     fview.VirtualMode = true;
     fview.MultiSelect = false; //select one and only one
     Updating          = false;
 }
Esempio n. 21
0
        private void m_formFProdutosVincular_eCallRefreshClassificacao(ref System.Windows.Forms.ListView lvClassificacao)
        {
            System.Windows.Forms.ListViewItem lviClassificacao = null;
            lvClassificacao.Items.Clear();
            switch (m_enumClassificacao)
            {
            case Classificacao.Ncm:
                foreach (mdlDataBaseAccess.Tabelas.XsdTbProdutosNcm.tbProdutosNcmRow dtrwClassificacao in m_typDatSetProdutosNcm.tbProdutosNcm.Rows)
                {
                    lviClassificacao = lvClassificacao.Items.Add(dtrwClassificacao.strNcm);
                    lviClassificacao.SubItems.Add(dtrwClassificacao.mstrDenominacao);
                    lviClassificacao.Tag = dtrwClassificacao.strNcm;
                }
                break;

            case Classificacao.Naladi:
                foreach (mdlDataBaseAccess.Tabelas.XsdTbProdutosNaladi.tbProdutosNaladiRow dtrwClassificacao in m_typDatSetProdutosNaladi.tbProdutosNaladi.Rows)
                {
                    lviClassificacao = lvClassificacao.Items.Add(dtrwClassificacao.strNaladi);
                    lviClassificacao.SubItems.Add(dtrwClassificacao.mstrDenominacao);
                    lviClassificacao.Tag = dtrwClassificacao.strNaladi;
                }
                break;
            }
        }
        public void SetListViewSortingWithSettingsContainsOrganisationIdAndListItemValueIsEqualToInputColumnAndSortOrderDescending()
        {
            using (var listview = new System.Windows.Forms.ListView())
            {
                int column = 1;
                var inputOrganisationId = Guid.NewGuid();
                listview.Name    = inputOrganisationId.ToString();
                listview.Sorting = System.Windows.Forms.SortOrder.Descending;

                var settings = new Settings();

                var org      = new Organisations();
                var listItem = new Item <string, int>(inputOrganisationId.ToString(), 1);
                org.Sortcolumns.Add(listItem);

                var item = new KeyValuePair <Guid, Organisations>(inputOrganisationId, org);
                settings.Organisations.Add(item);

                FluentActions.Invoking(() => systemUnderTest.SetListViewSorting(listview, column, inputOrganisationId.ToString(), settings))
                .Should()
                .NotThrow();

                listview.ListViewItemSorter.Should().NotBeNull();
                listview.Sorting.Should().Be(System.Windows.Forms.SortOrder.Ascending);
            }
        }
Esempio n. 23
0
 public static void ListView_ColumnClick(object sender, System.Windows.Forms.ColumnClickEventArgs e)
 {
     System.Windows.Forms.ListView lv = sender as System.Windows.Forms.ListView;
     // 检查点击的列是不是现在的排序列.
     if (e.Column == (lv.ListViewItemSorter as ListViewColumnSorter).SortColumn)
     {
         // 重新设置此列的排序方法.
         if ((lv.ListViewItemSorter as ListViewColumnSorter).Order == System.Windows.Forms.SortOrder.Ascending)
         {
             (lv.ListViewItemSorter as ListViewColumnSorter).Order = System.Windows.Forms.SortOrder.Descending;
         }
         else
         {
             (lv.ListViewItemSorter as ListViewColumnSorter).Order = System.Windows.Forms.SortOrder.Ascending;
         }
     }
     else
     {
         // 设置排序列,默认为正向排序
         (lv.ListViewItemSorter as ListViewColumnSorter).SortColumn = e.Column;
         (lv.ListViewItemSorter as ListViewColumnSorter).Order      = System.Windows.Forms.SortOrder.Ascending;
     }
     // 用新的排序方法对ListView排序
     ((System.Windows.Forms.ListView)sender).Sort();
 }
Esempio n. 24
0
    public static void SetSortIcon(this System.Windows.Forms.ListView ListViewControl, int ColumnIndex, System.Windows.Forms.SortOrder Order)
    {
        IntPtr ColumnHeader = SendMessage(ListViewControl.Handle, LVM_GETHEADER, IntPtr.Zero, IntPtr.Zero);

        for (int ColumnNumber = 0; ColumnNumber <= ListViewControl.Columns.Count - 1; ColumnNumber++)
        {
            IntPtr ColumnPtr = new IntPtr(ColumnNumber);
            HDITEM item      = new HDITEM();
            item.mask = HDITEM.Mask.Format;
            SendMessageHDITEM(ColumnHeader, HDM_GETITEM, ColumnPtr, ref item);

            if (!(Order == System.Windows.Forms.SortOrder.None) && ColumnNumber == ColumnIndex)
            {
                switch (Order)
                {
                case System.Windows.Forms.SortOrder.Ascending:
                    item.fmt &= ~HDITEM.Format.SortDown;
                    item.fmt |= HDITEM.Format.SortUp;
                    break;

                case System.Windows.Forms.SortOrder.Descending:
                    item.fmt &= ~HDITEM.Format.SortUp;
                    item.fmt |= HDITEM.Format.SortDown;
                    break;
                }
            }
            else
            {
                item.fmt &= ~HDITEM.Format.SortDown & ~HDITEM.Format.SortUp;
            }

            SendMessageHDITEM(ColumnHeader, HDM_SETITEM, ColumnPtr, ref item);
        }
    }
Esempio n. 25
0
        public Form()
        {
            this.InitializeComponent();

            System.Windows.Forms.Label label = new System.Windows.Forms.Label();
            label.Text = "Loaded Plugins:";
            this.flowLayoutPanel1.Controls.Add(label);

            System.Windows.Forms.ListView listview = new System.Windows.Forms.ListView();
            listview.View             = System.Windows.Forms.View.List;
            listview.CheckBoxes       = true;
            listview.ItemCheck       += new System.Windows.Forms.ItemCheckEventHandler(listview_ItemCheck);
            listview.ShowItemToolTips = true;
            //listview.Dock = System.Windows.Forms.DockStyle.Fill;
            listview.Size = new System.Drawing.Size(this.Width, listview.Height * 2);
            this.flowLayoutPanel1.Controls.Add(listview);

            string[] names = CadKit.Plugins.Manager.Instance.FileNames;
            //CadKit.Interfaces.IPlugin[] plugins = CadKit.Plugins.Manager.Instance.Plugins;

            for (int i = 0; i < names.Length; ++i)
            {
                string filename = names[i];
                //CadKit.Interfaces.IPlugin plugin = CadKit.Plugins.Manager.Instance.pluginInterface(filename);
                System.Windows.Forms.ListViewItem item = new System.Windows.Forms.ListViewItem(filename);
                item.Checked = CadKit.Plugins.Manager.Instance.isLoaded(filename);
                //item.ToolTipText = plugin.Description;
                listview.Items.Add(item);
            }
        }
 /// <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.groupBox1 = new System.Windows.Forms.GroupBox();
     this.listView1 = new System.Windows.Forms.ListView();
     this.button1 = new System.Windows.Forms.Button();
     this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
     this.groupBox1.SuspendLayout();
     this.SuspendLayout();
     //
     // groupBox1
     //
     this.groupBox1.Controls.Add(this.listView1);
     this.groupBox1.Location = new System.Drawing.Point(30, 26);
     this.groupBox1.Name = "groupBox1";
     this.groupBox1.Size = new System.Drawing.Size(406, 199);
     this.groupBox1.TabIndex = 0;
     this.groupBox1.TabStop = false;
     this.groupBox1.Text = "双击选择服务";
     //
     // listView1
     //
     this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listView1.Location = new System.Drawing.Point(3, 21);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(400, 175);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
     //
     // button1
     //
     this.button1.Location = new System.Drawing.Point(358, 241);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(75, 23);
     this.button1.TabIndex = 1;
     this.button1.Text = "取消";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // toolTip1
     //
     this.toolTip1.ToolTipIcon = System.Windows.Forms.ToolTipIcon.Info;
     //
     // ServiceSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 15F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(472, 306);
     this.ControlBox = false;
     this.Controls.Add(this.button1);
     this.Controls.Add(this.groupBox1);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.Name = "ServiceSelector";
     this.Text = "ServiceSelector";
     this.Load += new System.EventHandler(this.ServiceSelector_Load);
     this.groupBox1.ResumeLayout(false);
     this.ResumeLayout(false);
 }
Esempio n. 27
0
        public List <string> getOdontograma(Conexion conn, System.Windows.Forms.ListView listView)
        {
            List <string> listData = new List <string>();

            try
            {
                conn.getDataSet().Clear();
                string stringSQL = "SELECT cedula_paciente, categoria_odontograma, imagen_odontograma"
                                   + "FROM tbl_odontograma"
                                   + " WHERE cedula_paciente = '" + listView.SelectedItems[0].Text + "'";
                conn.querySQL(stringSQL);
                conn.fillDataset("", "");

                if (conn.getDataSet().Tables.Count != 0)
                {
                    for (int cont = 0; cont < conn.getDataSet().Tables[0].Columns.Count; cont++)
                    {
                        listData.Add(conn.getDataSet().Tables[0].Rows[0].ItemArray[cont].ToString());
                    }
                }
            }
            catch (Exception ex)
            {
                mssg.showMessage(ex.Message, "error", "");
            }

            return(listData);
        }
 public static void DecheckAllItems(System.Windows.Forms.ListView listView)
 {
     foreach (System.Windows.Forms.ListViewItem item in listView.Items)
     {
         item.Checked = false;
     }
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listView1 = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.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.listView1.CheckBoxes = true;
     this.listView1.Location = new System.Drawing.Point(0, 0);
     this.listView1.Margin = new System.Windows.Forms.Padding(0);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(150, 100);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.List;
     this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
     //
     // ExcelListNames
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.listView1);
     this.Margin = new System.Windows.Forms.Padding(0);
     this.Name = "ExcelListNames";
     this.Size = new System.Drawing.Size(150, 100);
     this.Load += new System.EventHandler(this.ExcelListNames_Load);
     this.ResumeLayout(false);
 }
Esempio n. 30
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewDetails = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // listViewDetails
     //
     this.listViewDetails.CheckBoxes    = true;
     this.listViewDetails.Dock          = System.Windows.Forms.DockStyle.Fill;
     this.listViewDetails.FullRowSelect = true;
     this.listViewDetails.Location      = new System.Drawing.Point(0, 0);
     this.listViewDetails.Name          = "listViewDetails";
     this.listViewDetails.Size          = new System.Drawing.Size(472, 456);
     this.listViewDetails.TabIndex      = 0;
     this.listViewDetails.View          = System.Windows.Forms.View.Details;
     //
     // ListViewTestForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6, 15);
     this.ClientSize          = new System.Drawing.Size(472, 456);
     this.Controls.Add(this.listViewDetails);
     this.Name = "ListViewTestForm";
     this.Text = "ListViewTestForm";
     this.ResumeLayout(false);
 }
Esempio n. 31
0
        private void vArmadoresRefresh(ref System.Windows.Forms.ListView lvArmadores)
        {
            lvArmadores.Items.Clear();

            // Sorting
            System.Collections.SortedList sortListArmadores = new System.Collections.SortedList();
            foreach (mdlDataBaseAccess.Tabelas.XsdTbArmadores.tbArmadoresRow dtrwArmador in m_typDatSetArmadores.tbArmadores.Rows)
            {
                if ((dtrwArmador.RowState != System.Data.DataRowState.Deleted) && (!dtrwArmador.IsstrNomeNull()))
                {
                    if (!sortListArmadores.ContainsKey(dtrwArmador.strNome))
                    {
                        sortListArmadores.Add(dtrwArmador.strNome, dtrwArmador);
                    }
                }
            }

            // Insert
            for (int i = 0; i < sortListArmadores.Count; i++)
            {
                mdlDataBaseAccess.Tabelas.XsdTbArmadores.tbArmadoresRow dtrwArmadorInserir = (mdlDataBaseAccess.Tabelas.XsdTbArmadores.tbArmadoresRow)sortListArmadores.GetByIndex(i);
                System.Windows.Forms.ListViewItem lviInsert = lvArmadores.Items.Add(dtrwArmadorInserir.strNome);
                lviInsert.Tag = dtrwArmadorInserir.nIdArmador;
                if ((m_nIdSelect != -1) && (dtrwArmadorInserir.nIdArmador == m_nIdSelect))
                {
                    lviInsert.Selected = true;
                    m_nIdSelect        = -1;
                }
            }
        }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ControlProperties));
     this.contextMenuStrip = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.listViewProperties = new System.Windows.Forms.ListView();
     this.columnHeaderProperty = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderValue = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.contextMenuStrip.SuspendLayout();
     this.SuspendLayout();
     //
     // contextMenuStrip
     //
     this.contextMenuStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToolStripMenuItem});
     this.contextMenuStrip.Name = "contextMenuStrip";
     resources.ApplyResources(this.contextMenuStrip, "contextMenuStrip");
     this.contextMenuStrip.Opening += new System.ComponentModel.CancelEventHandler(this.contextMenuStrip_Opening);
     //
     // copyToolStripMenuItem
     //
     this.copyToolStripMenuItem.Name = "copyToolStripMenuItem";
     resources.ApplyResources(this.copyToolStripMenuItem, "copyToolStripMenuItem");
     this.copyToolStripMenuItem.Click += new System.EventHandler(this.copyToolStripMenuItem_Click);
     //
     // listViewProperties
     //
     this.listViewProperties.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderProperty,
     this.columnHeaderValue});
     this.listViewProperties.ContextMenuStrip = this.contextMenuStrip;
     resources.ApplyResources(this.listViewProperties, "listViewProperties");
     this.listViewProperties.FullRowSelect = true;
     this.listViewProperties.GridLines = true;
     this.listViewProperties.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewProperties.MultiSelect = false;
     this.listViewProperties.Name = "listViewProperties";
     this.listViewProperties.ShowItemToolTips = true;
     this.listViewProperties.UseCompatibleStateImageBehavior = false;
     this.listViewProperties.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderProperty
     //
     resources.ApplyResources(this.columnHeaderProperty, "columnHeaderProperty");
     //
     // columnHeaderValue
     //
     resources.ApplyResources(this.columnHeaderValue, "columnHeaderValue");
     //
     // ControlProperties
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.listViewProperties);
     this.Name = "ControlProperties";
     this.contextMenuStrip.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.deviceListVw = new System.Windows.Forms.ListView();
     this.cancelButton = new System.Windows.Forms.Button();
     this.okButton = new System.Windows.Forms.Button();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // deviceListVw
     //
     this.deviceListVw.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1});
     this.deviceListVw.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.deviceListVw.Location = new System.Drawing.Point(12, 12);
     this.deviceListVw.Name = "deviceListVw";
     this.deviceListVw.Size = new System.Drawing.Size(327, 108);
     this.deviceListVw.TabIndex = 0;
     this.deviceListVw.UseCompatibleStateImageBehavior = false;
     this.deviceListVw.View = System.Windows.Forms.View.Details;
     this.deviceListVw.SelectedIndexChanged += new System.EventHandler(this.deviceListVw_SelectedIndexChanged);
     //
     // cancelButton
     //
     this.cancelButton.Location = new System.Drawing.Point(216, 136);
     this.cancelButton.Name = "cancelButton";
     this.cancelButton.Size = new System.Drawing.Size(75, 23);
     this.cancelButton.TabIndex = 1;
     this.cancelButton.Text = "cancel";
     this.cancelButton.UseVisualStyleBackColor = true;
     this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     //
     // okButton
     //
     this.okButton.Location = new System.Drawing.Point(48, 136);
     this.okButton.Name = "okButton";
     this.okButton.Size = new System.Drawing.Size(75, 23);
     this.okButton.TabIndex = 2;
     this.okButton.Text = "OK";
     this.okButton.UseVisualStyleBackColor = true;
     this.okButton.Click += new System.EventHandler(this.okButton_Click);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Name";
     this.columnHeader1.Width = 400;
     //
     // DeviceSelector
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(351, 180);
     this.Controls.Add(this.okButton);
     this.Controls.Add(this.cancelButton);
     this.Controls.Add(this.deviceListVw);
     this.Name = "DeviceSelector";
     this.Text = "DeviceSelector";
     this.Load += new System.EventHandler(this.DeviceSelector_Load);
     this.ResumeLayout(false);
 }
Esempio n. 34
0
 public TreeNodeTag(int type, System.Windows.Forms.ListView listView1, System.Windows.Forms.ListView listView2)
 {
     Id            = type;
     m_chart       = null;
     m_listView1   = listView1;
     m_listView2   = listView2;
     indexInParent = -1;
 }
Esempio n. 35
0
        internal Voice(PluginControl pc)
            : base(pc)
        {
            Title = "voice";

            vTab         = (VoiceConsole)control.instance.TabConsole.Tabs["voice"].Control;
            participants = vTab.participants;
        }
Esempio n. 36
0
        internal Voice(PluginControl pc)
            : base(pc)
        {
            Title = "voice";

            vTab = (VoiceConsole)control.instance.TabConsole.Tabs["voice"].Control;
            participants = vTab.participants;
        }
Esempio n. 37
0
        public static void SetItemPosition(System.Windows.Forms.ListView lst, int index, int x, int y)
        {
            POINT p;

            p.x = x;
            p.y = y;
            SendMessage(lst.Handle, LVM_SETITEMPOSITION32, index, ref p);
        }
Esempio n. 38
0
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listView1 = new System.Windows.Forms.ListView();
     this.zgc = new ZedGraph.ZedGraphControl();
     this.btnrePlot = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(12, 12);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(182, 295);
     this.listView1.TabIndex = 1;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // zgc
     //
     this.zgc.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.zgc.Location = new System.Drawing.Point(200, 12);
     this.zgc.Name = "zgc";
     this.zgc.ScrollGrace = 0D;
     this.zgc.ScrollMaxX = 0D;
     this.zgc.ScrollMaxY = 0D;
     this.zgc.ScrollMaxY2 = 0D;
     this.zgc.ScrollMinX = 0D;
     this.zgc.ScrollMinY = 0D;
     this.zgc.ScrollMinY2 = 0D;
     this.zgc.Size = new System.Drawing.Size(592, 332);
     this.zgc.TabIndex = 2;
     //
     // btnrePlot
     //
     this.btnrePlot.Location = new System.Drawing.Point(70, 321);
     this.btnrePlot.Name = "btnrePlot";
     this.btnrePlot.Size = new System.Drawing.Size(75, 23);
     this.btnrePlot.TabIndex = 3;
     this.btnrePlot.Text = "Replot";
     this.btnrePlot.UseVisualStyleBackColor = true;
     //
     // frmPlot
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(804, 356);
     this.Controls.Add(this.btnrePlot);
     this.Controls.Add(this.zgc);
     this.Controls.Add(this.listView1);
     this.Name = "frmPlot";
     this.Text = "frmPlot";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lvTask = new System.Windows.Forms.ListView();
     this.colTaskName = new System.Windows.Forms.ColumnHeader();
     this.colSource = new System.Windows.Forms.ColumnHeader();
     this.colTarget = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // lvTask
     //
     this.lvTask.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colTaskName,
     this.colSource,
     this.colTarget});
     this.lvTask.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvTask.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.lvTask.FullRowSelect = true;
     this.lvTask.GridLines = true;
     this.lvTask.Location = new System.Drawing.Point(0, 0);
     this.lvTask.Name = "lvTask";
     this.lvTask.Size = new System.Drawing.Size(384, 244);
     this.lvTask.TabIndex = 1;
     this.lvTask.UseCompatibleStateImageBehavior = false;
     this.lvTask.View = System.Windows.Forms.View.Details;
     //
     // colTaskName
     //
     this.colTaskName.Text = "Name";
     this.colTaskName.Width = 100;
     //
     // colSource
     //
     this.colSource.Text = "Source";
     this.colSource.Width = 140;
     //
     // colTarget
     //
     this.colTarget.Text = "Target";
     this.colTarget.Width = 140;
     //
     // DisplayTaskForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(384, 244);
     this.Controls.Add(this.lvTask);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Margin = new System.Windows.Forms.Padding(4);
     this.Name = "DisplayTaskForm";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Display Task Form";
     this.Load += new System.EventHandler(this.DisplayTaskForm_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewVirtualEffects = new System.Windows.Forms.ListView();
     this.buttonRemove = new System.Windows.Forms.Button();
     this.buttonCancel = new System.Windows.Forms.Button();
     this.fontDialog1 = new System.Windows.Forms.FontDialog();
     this.SuspendLayout();
     //
     // listViewVirtualEffects
     //
     this.listViewVirtualEffects.Location = new System.Drawing.Point(12, 12);
     this.listViewVirtualEffects.Name = "listViewVirtualEffects";
     this.listViewVirtualEffects.Size = new System.Drawing.Size(260, 184);
     this.listViewVirtualEffects.TabIndex = 0;
     this.listViewVirtualEffects.UseCompatibleStateImageBehavior = false;
     this.listViewVirtualEffects.View = System.Windows.Forms.View.List;
     this.listViewVirtualEffects.ItemSelectionChanged += new System.Windows.Forms.ListViewItemSelectionChangedEventHandler(this.listViewVirtualEffects_ItemSelectionChanged);
     //
     // buttonRemove
     //
     this.buttonRemove.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonRemove.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.buttonRemove.Enabled = false;
     this.buttonRemove.Location = new System.Drawing.Point(197, 226);
     this.buttonRemove.Name = "buttonRemove";
     this.buttonRemove.Size = new System.Drawing.Size(75, 23);
     this.buttonRemove.TabIndex = 1;
     this.buttonRemove.Text = "Remove";
     this.buttonRemove.UseVisualStyleBackColor = true;
     //
     // buttonCancel
     //
     this.buttonCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.buttonCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
     this.buttonCancel.Location = new System.Drawing.Point(116, 226);
     this.buttonCancel.Name = "buttonCancel";
     this.buttonCancel.Size = new System.Drawing.Size(75, 23);
     this.buttonCancel.TabIndex = 2;
     this.buttonCancel.Text = "Cancel";
     this.buttonCancel.UseVisualStyleBackColor = true;
     //
     // VirtualEffectRemoveDialog
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(284, 261);
     this.Controls.Add(this.buttonCancel);
     this.Controls.Add(this.buttonRemove);
     this.Controls.Add(this.listViewVirtualEffects);
     this.Name = "VirtualEffectRemoveDialog";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
     this.Text = "Remove Virtual Effect";
     this.ResumeLayout(false);
 }
Esempio n. 41
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmDetails));
     this.listview = new System.Windows.Forms.ListView();
     this.FileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.Type = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // listview
     //
     this.listview.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.listview.BackColor = System.Drawing.SystemColors.Window;
     this.listview.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.FileName,
     this.Type});
     this.listview.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.listview.ForeColor = System.Drawing.SystemColors.ControlText;
     this.listview.FullRowSelect = true;
     this.listview.LabelWrap = false;
     this.listview.Location = new System.Drawing.Point(12, 12);
     this.listview.MultiSelect = false;
     this.listview.Name = "listview";
     this.listview.Size = new System.Drawing.Size(527, 188);
     this.listview.TabIndex = 50;
     this.listview.UseCompatibleStateImageBehavior = false;
     this.listview.View = System.Windows.Forms.View.Details;
     //
     // FileName
     //
     this.FileName.Text = "File Name";
     this.FileName.Width = 205;
     //
     // Type
     //
     this.Type.Text = "Location";
     this.Type.Width = 2000;
     //
     // FrmDetails
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(551, 218);
     this.Controls.Add(this.listview);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FrmDetails";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "Problem Details";
     this.Load += new System.EventHandler(this.frmDetails_Load);
     this.ResumeLayout(false);
 }
Esempio n. 42
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem("商品B", 0);
     System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem("商品A", 1);
     System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem("商品C", 2);
     System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem("商品D", 3);
     System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem("商品E", 4);
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.listView1 = new System.Windows.Forms.ListView();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.AllowDrop = true;
     this.listView1.Items.AddRange(new System.Windows.Forms.ListViewItem[] {
     listViewItem1,
     listViewItem2,
     listViewItem3,
     listViewItem4,
     listViewItem5});
     this.listView1.LargeImageList = this.imageList1;
     this.listView1.Location = new System.Drawing.Point(1, -1);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(301, 180);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.DragDrop += new System.Windows.Forms.DragEventHandler(this.listView1_DragDrop);
     this.listView1.DragEnter += new System.Windows.Forms.DragEventHandler(this.listView1_DragEnter);
     this.listView1.ItemDrag += new System.Windows.Forms.ItemDragEventHandler(this.listView1_ItemDrag);
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "1.bmp");
     this.imageList1.Images.SetKeyName(1, "2.bmp");
     this.imageList1.Images.SetKeyName(2, "3.bmp");
     this.imageList1.Images.SetKeyName(3, "4.bmp");
     this.imageList1.Images.SetKeyName(4, "5.bmp");
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(303, 179);
     this.Controls.Add(this.listView1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "在列表视图中拖动视图项";
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lv_Services = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.SuspendLayout();
     //
     // lv_Services
     //
     this.lv_Services.CheckBoxes = true;
     this.lv_Services.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.lv_Services.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lv_Services.Location = new System.Drawing.Point(0, 0);
     this.lv_Services.Name = "lv_Services";
     this.lv_Services.Size = new System.Drawing.Size(295, 425);
     this.lv_Services.TabIndex = 0;
     this.lv_Services.UseCompatibleStateImageBehavior = false;
     this.lv_Services.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Service";
     this.columnHeader1.Width = 110;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Port ";
     this.columnHeader2.Width = 80;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Protocol";
     this.columnHeader3.Width = 80;
     //
     // frmServiceList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(295, 425);
     this.ControlBox = false;
     this.Controls.Add(this.lv_Services);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.Name = "frmServiceList";
     this.ShowIcon = false;
     this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
     this.Text = "ServiceList";
     this.ResumeLayout(false);
 }
Esempio n. 44
0
        /// <summary>
        /// Constructor</summary>
        public WinGuiWpfDataContext()
        {
            m_listView = new System.Windows.Forms.ListView();
            m_listView.SmallImageList = ResourceUtil.GetImageList16();
            m_listView.AllowDrop = true;
            m_listView.MultiSelect = true;
            m_listView.AllowColumnReorder = true;
            m_listView.LabelEdit = true;
            m_listView.Dock = System.Windows.Forms.DockStyle.Fill;
            m_listView.Height = 100;
            m_listView.Width = 100;

            if (Reloaded == null) return; // suppress compiler warning
        }
        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.Macro = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            this.Description = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
            m_macroList = new System.Windows.Forms.ListView();
            this.SuspendLayout();
            // 
            // Macro
            // 
            this.Macro.Text = "Macro";
            // 
            // Description
            // 
            this.Description.Text = "Description";
            this.Description.Width = 220;
            // 
            // m_macroList
            // 
            m_macroList.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)));
            m_macroList.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.Macro,
            this.Description});
            m_macroList.FullRowSelect = true;
            m_macroList.GridLines = true;
            m_macroList.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
            m_macroList.LabelWrap = false;
            m_macroList.Location = new System.Drawing.Point(12, 12);
            m_macroList.MultiSelect = false;
            m_macroList.Name = "m_macroList";
            m_macroList.Size = new System.Drawing.Size(289, 170);
            m_macroList.TabIndex = 0;
            m_macroList.UseCompatibleStateImageBehavior = false;
            m_macroList.View = System.Windows.Forms.View.Details;
            m_macroList.ItemActivate += new System.EventHandler(this.selectMacro);
            // 
            // MacroHelper
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(313, 194);
            this.Controls.Add(m_macroList);
            this.Name = "MacroHelper";
            this.Text = "Macro Helper";
            this.ResumeLayout(false);

        }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FrmShortcutFixer));
     this.shortcutsLst = new System.Windows.Forms.ListView();
     this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colTarget = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colLocation = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colDescription = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // shortcutsLst
     //
     resources.ApplyResources(this.shortcutsLst, "shortcutsLst");
     this.shortcutsLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colName,
     this.colTarget,
     this.colLocation,
     this.colDescription});
     this.shortcutsLst.Name = "shortcutsLst";
     this.shortcutsLst.UseCompatibleStateImageBehavior = false;
     this.shortcutsLst.View = System.Windows.Forms.View.Details;
     //
     // colName
     //
     resources.ApplyResources(this.colName, "colName");
     //
     // colTarget
     //
     resources.ApplyResources(this.colTarget, "colTarget");
     //
     // colLocation
     //
     resources.ApplyResources(this.colLocation, "colLocation");
     //
     // colDescription
     //
     resources.ApplyResources(this.colDescription, "colDescription");
     //
     // FrmShortcutFixer
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.shortcutsLst);
     this.Name = "FrmShortcutFixer";
     this.ShowIcon = false;
     this.ResumeLayout(false);
 }
Esempio n. 47
0
 /// <summary>
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.listView1 = new System.Windows.Forms.ListView();
     this.dgv = new System.Windows.Forms.DataGridView();
     ((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                 | System.Windows.Forms.AnchorStyles.Left)));
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(16, 25);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(222, 554);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // dgv
     //
     this.dgv.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.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
     this.dgv.Location = new System.Drawing.Point(244, 25);
     this.dgv.Name = "dgv";
     this.dgv.Size = new System.Drawing.Size(794, 554);
     this.dgv.TabIndex = 1;
     this.dgv.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgv_CellEndEdit);
     this.dgv.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgv_DataError);
     this.dgv.KeyDown += new System.Windows.Forms.KeyEventHandler(this.dgv_KeyDown);
     this.dgv.MouseUp += new System.Windows.Forms.MouseEventHandler(this.dgv_MouseUp);
     //
     // DatasheetControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.dgv);
     this.Controls.Add(this.listView1);
     this.Name = "DatasheetControl";
     this.Size = new System.Drawing.Size(1066, 602);
     this.Load += new System.EventHandler(this.datasheet_load);
     ((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lvresults = new System.Windows.Forms.ListView();
     this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.SuspendLayout();
     //
     // lvresults
     //
     this.lvresults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.lvresults.Dock = System.Windows.Forms.DockStyle.Fill;
     this.lvresults.FullRowSelect = true;
     this.lvresults.GridLines = true;
     this.lvresults.Location = new System.Drawing.Point(0, 0);
     this.lvresults.Name = "lvresults";
     this.lvresults.Size = new System.Drawing.Size(669, 201);
     this.lvresults.TabIndex = 1;
     this.lvresults.UseCompatibleStateImageBehavior = false;
     this.lvresults.View = System.Windows.Forms.View.Details;
     this.lvresults.DoubleClick += lvresults_DoubleClick;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "File";
     this.columnHeader1.Width = 561;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Line";
     this.columnHeader2.Width = 71;
     //
     // FindInFiles
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(669, 201);
     this.Controls.Add(this.lvresults);
     this.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.Name = "FindInFiles";
     this.ShowIcon = false;
     this.Text = "Search Results";
     this.ResumeLayout(false);
 }
Esempio n. 49
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormRegCleaner));
     this.badRegLst = new System.Windows.Forms.ListView();
     this.colRegKey = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.colProblem = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.lblRegKeys = new System.Windows.Forms.Label();
     this.SuspendLayout();
     //
     // badRegLst
     //
     resources.ApplyResources(this.badRegLst, "badRegLst");
     this.badRegLst.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.colRegKey,
     this.colProblem});
     this.badRegLst.Name = "badRegLst";
     this.badRegLst.UseCompatibleStateImageBehavior = false;
     this.badRegLst.View = System.Windows.Forms.View.Details;
     //
     // colRegKey
     //
     resources.ApplyResources(this.colRegKey, "colRegKey");
     //
     // colProblem
     //
     resources.ApplyResources(this.colProblem, "colProblem");
     //
     // lblRegKeys
     //
     resources.ApplyResources(this.lblRegKeys, "lblRegKeys");
     this.lblRegKeys.Name = "lblRegKeys";
     //
     // FormRegCleaner
     //
     resources.ApplyResources(this, "$this");
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.badRegLst);
     this.Controls.Add(this.lblRegKeys);
     this.Name = "FormRegCleaner";
     this.ShowIcon = false;
     this.Load += new System.EventHandler(this.frmRegCleaner_Load);
     this.ResumeLayout(false);
 }
Esempio n. 50
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.listView1 = new System.Windows.Forms.ListView();
            this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
            this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
            this.SuspendLayout();
            // 
            // listView1
            // 
            this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader2});
            this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
            this.listView1.Location = new System.Drawing.Point(0, 0);
            this.listView1.Name = "listView1";
            this.listView1.Size = new System.Drawing.Size(434, 316);
            this.listView1.TabIndex = 0;
            this.listView1.UseCompatibleStateImageBehavior = false;
            this.listView1.View = System.Windows.Forms.View.Details;
            // 
            // columnHeader1
            // 
            this.columnHeader1.Text = "Date";
            // 
            // columnHeader2
            // 
            this.columnHeader2.Text = "Message";
            this.columnHeader2.Width = 355;
            // 
            // LogViewer
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(434, 316);
            this.Controls.Add(this.listView1);
            this.Name = "LogViewer";
            this.Text = "LogViewer";
            this.ResumeLayout(false);

        }
Esempio n. 51
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.alertListView = new System.Windows.Forms.ListView();
     this.okBtn = new System.Windows.Forms.Button();
     this.SuspendLayout();
     //
     // alertListView
     //
     this.alertListView.Font = new System.Drawing.Font("Segoe UI", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.alertListView.GridLines = true;
     this.alertListView.Location = new System.Drawing.Point(12, 12);
     this.alertListView.Name = "alertListView";
     this.alertListView.Size = new System.Drawing.Size(345, 289);
     this.alertListView.TabIndex = 0;
     this.alertListView.UseCompatibleStateImageBehavior = false;
     this.alertListView.View = System.Windows.Forms.View.Details;
     //
     // okBtn
     //
     this.okBtn.Location = new System.Drawing.Point(146, 307);
     this.okBtn.Name = "okBtn";
     this.okBtn.Size = new System.Drawing.Size(75, 23);
     this.okBtn.TabIndex = 1;
     this.okBtn.Text = "OK";
     this.okBtn.UseVisualStyleBackColor = true;
     this.okBtn.Click += new System.EventHandler(this.okBtn_Click);
     //
     // AlertForm
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(370, 335);
     this.Controls.Add(this.okBtn);
     this.Controls.Add(this.alertListView);
     this.Name = "AlertForm";
     this.Text = "Alert";
     this.Load += new System.EventHandler(this.AlertForm_Load);
     this.ResumeLayout(false);
 }
Esempio n. 52
0
 private void InitializeComponent()
 {
     this.listView1 = new System.Windows.Forms.ListView();
       this.SuspendLayout();
       //
       // listView1
       //
       this.listView1.Location = new System.Drawing.Point(344, 196);
       this.listView1.Name = "listView1";
       this.listView1.Size = new System.Drawing.Size(121, 97);
       this.listView1.TabIndex = 0;
       this.listView1.UseCompatibleStateImageBehavior = false;
       //
       // HardwareView
       //
       this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
       this.ClientSize = new System.Drawing.Size(859, 537);
       this.Controls.Add(this.listView1);
       this.Name = "HardwareView";
       this.Text = "Hardware";
       this.ResumeLayout(false);
 }
Esempio n. 53
0
        /// <summary>
        /// Sorts the User list by UserDescription in Ascending order
        /// </summary>
        public void SortAscending()
        {
            System.Windows.Forms.ListView LV = new System.Windows.Forms.ListView();
            System.Windows.Forms.ColumnHeader cH = new System.Windows.Forms.ColumnHeader();
            cH.Width = 100;
            LV.Columns.Add(cH);
            LV.View = System.Windows.Forms.View.Details;
            LV.Sorting = System.Windows.Forms.SortOrder.Ascending;
            foreach(object x in List)
            {
                System.Windows.Forms.ListViewItem LVA = LV.Items.Add(((User)x).mvarDescription);
                LVA.Tag = x;
            }

            //LV.ListViewItemSorter = new OysterClassLibrary.ListViewItemComparer(0);

            List.Clear();
            LV.Sort();
            foreach(System.Windows.Forms.ListViewItem lvi in LV.Items)
            {
                List.Add(lvi.Tag);
            }
        }
Esempio n. 54
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Frm_Main));
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.listView1 = new System.Windows.Forms.ListView();
     this.SuspendLayout();
     //
     // imageList1
     //
     this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     this.imageList1.Images.SetKeyName(0, "vvv.ico");
     this.imageList1.Images.SetKeyName(1, "通用图2.bmp");
     //
     // listView1
     //
     this.listView1.BackgroundImage = global::DrawBackGround.Properties.Resources.通用图2;
     this.listView1.BackgroundImageTiled = true;
     this.listView1.Location = new System.Drawing.Point(4, -1);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(304, 172);
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     //
     // Frm_Main
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(309, 174);
     this.Controls.Add(this.listView1);
     this.Name = "Frm_Main";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "在ListView组件中绘制底纹";
     this.Load += new System.EventHandler(this.Form1_Load);
     this.ResumeLayout(false);
 }
Esempio n. 55
0
 /// <summary>
 /// 设计器支持所需的方法 - 不要
 /// 使用代码编辑器修改此方法的内容。
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(FormDeclareList));
     this.listView1 = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.button1 = new DevComponents.DotNetBar.ButtonX();
     this.button2 = new DevComponents.DotNetBar.ButtonX();
     this.imageList1 = new System.Windows.Forms.ImageList(this.components);
     this.SuspendLayout();
     //
     // listView1
     //
     this.listView1.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.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3});
     this.listView1.FullRowSelect = true;
     this.listView1.GridLines = true;
     this.listView1.Location = new System.Drawing.Point(12, 32);
     this.listView1.Name = "listView1";
     this.listView1.Size = new System.Drawing.Size(564, 293);
     this.listView1.SmallImageList = this.imageList1;
     this.listView1.TabIndex = 0;
     this.listView1.UseCompatibleStateImageBehavior = false;
     this.listView1.View = System.Windows.Forms.View.Details;
     this.listView1.DoubleClick += new System.EventHandler(this.listView1_DoubleClick);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "单号";
     this.columnHeader1.Width = 66;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "投诉时间";
     this.columnHeader2.Width = 117;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "投诉内容";
     this.columnHeader3.Width = 374;
     //
     // button1
     //
     this.button1.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button1.Location = new System.Drawing.Point(351, 331);
     this.button1.Name = "button1";
     this.button1.Size = new System.Drawing.Size(102, 23);
     this.button1.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button1.TabIndex = 42;
     this.button1.Text = "处  理";
     this.button1.Click += new System.EventHandler(this.button1_Click);
     //
     // button2
     //
     this.button2.AccessibleRole = System.Windows.Forms.AccessibleRole.PushButton;
     this.button2.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
     this.button2.DialogResult = System.Windows.Forms.DialogResult.OK;
     this.button2.Location = new System.Drawing.Point(474, 331);
     this.button2.Name = "button2";
     this.button2.Size = new System.Drawing.Size(102, 23);
     this.button2.Style = DevComponents.DotNetBar.eDotNetBarStyle.VS2005;
     this.button2.TabIndex = 43;
     this.button2.Text = "关  闭";
     this.button2.Click += new System.EventHandler(this.button2_Click);
     //
     // imageList1
     //
     this.imageList1.ColorDepth = System.Windows.Forms.ColorDepth.Depth16Bit;
     this.imageList1.ImageSize = new System.Drawing.Size(1, 14);
     this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
     //
     // FormDeclareList
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.BackgroundImage = global::YTGPS_Client.Properties.Resources.fbk2;
     this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.Stretch;
     this.ClientSize = new System.Drawing.Size(588, 366);
     this.Controls.Add(this.button2);
     this.Controls.Add(this.listView1);
     this.Controls.Add(this.button1);
     this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
     this.Name = "FormDeclareList";
     this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
     this.Text = "待处理投诉、故障列表";
     this.Controls.SetChildIndex(this.button1, 0);
     this.Controls.SetChildIndex(this.listView1, 0);
     this.Controls.SetChildIndex(this.button2, 0);
     this.ResumeLayout(false);
 }
Esempio n. 56
0
        private void InitializeComponent()
        {
			this.OKBtn = new System.Windows.Forms.Button();
			this.CancelBtn = new System.Windows.Forms.Button();
			this.HelpBtn = new System.Windows.Forms.Button();
			this.listView1 = new System.Windows.Forms.ListView();
			this.Det = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.ItemId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.StratumId = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.DT = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.FileName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.Comment = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.MCount = new System.Windows.Forms.TextBox();
			this.MCountSel = new System.Windows.Forms.TextBox();
			this.Material = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
			this.SuspendLayout();
			// 
			// OKBtn
			// 
			this.OKBtn.Location = new System.Drawing.Point(695, 15);
			this.OKBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.OKBtn.Name = "OKBtn";
			this.OKBtn.Size = new System.Drawing.Size(100, 28);
			this.OKBtn.TabIndex = 6;
			this.OKBtn.Text = "OK";
			this.OKBtn.UseVisualStyleBackColor = true;
			this.OKBtn.Click += new System.EventHandler(this.OKBtn_Click);
			// 
			// CancelBtn
			// 
			this.CancelBtn.Location = new System.Drawing.Point(695, 50);
			this.CancelBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.CancelBtn.Name = "CancelBtn";
			this.CancelBtn.Size = new System.Drawing.Size(100, 28);
			this.CancelBtn.TabIndex = 7;
			this.CancelBtn.Text = "Cancel";
			this.CancelBtn.UseVisualStyleBackColor = true;
			this.CancelBtn.Click += new System.EventHandler(this.CancelBtn_Click);
			// 
			// HelpBtn
			// 
			this.HelpBtn.Location = new System.Drawing.Point(695, 86);
			this.HelpBtn.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.HelpBtn.Name = "HelpBtn";
			this.HelpBtn.Size = new System.Drawing.Size(100, 28);
			this.HelpBtn.TabIndex = 8;
			this.HelpBtn.Text = "Help";
			this.HelpBtn.UseVisualStyleBackColor = true;
			this.HelpBtn.Click += new System.EventHandler(this.HelpBtn_Click);
			// 
			// listView1
			// 
			this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.Det,
            this.ItemId,
            this.StratumId,
            this.DT,
            this.FileName,
            this.Comment,
            this.Material});
			this.listView1.FullRowSelect = true;
			this.listView1.Location = new System.Drawing.Point(4, 15);
			this.listView1.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.listView1.Name = "listView1";
			this.listView1.ShowItemToolTips = true;
			this.listView1.Size = new System.Drawing.Size(683, 448);
			this.listView1.TabIndex = 9;
			this.listView1.UseCompatibleStateImageBehavior = false;
			this.listView1.View = System.Windows.Forms.View.Details;
			this.listView1.ColumnClick += new System.Windows.Forms.ColumnClickEventHandler(this.listView1_ColumnClick);
			this.listView1.SelectedIndexChanged += new System.EventHandler(this.listView1_SelectedIndexChanged);
			// 
			// Det
			// 
			this.Det.Text = "Detector";
			this.Det.Width = 90;
			// 
			// ItemId
			// 
			this.ItemId.DisplayIndex = 2;
			this.ItemId.Text = "Item id";
			this.ItemId.Width = 94;
			// 
			// StratumId
			// 
			this.StratumId.DisplayIndex = 1;
			this.StratumId.Text = "Stratum id";
			this.StratumId.Width = 74;
			// 
			// DT
			// 
			this.DT.Text = "Date and Time";
			this.DT.TextAlign = System.Windows.Forms.HorizontalAlignment.Right;
			this.DT.Width = 120;
			// 
			// FileName
			// 
			this.FileName.Text = "File Name";
			this.FileName.Width = 120;
			// 
			// Comment
			// 
			this.Comment.Text = "Comment";
			this.Comment.Width = 72;
			// 
			// MCount
			// 
			this.MCount.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.MCount.CausesValidation = false;
			this.MCount.Location = new System.Drawing.Point(695, 290);
			this.MCount.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.MCount.Name = "MCount";
			this.MCount.ReadOnly = true;
			this.MCount.Size = new System.Drawing.Size(116, 15);
			this.MCount.TabIndex = 10;
			// 
			// MCountSel
			// 
			this.MCountSel.BorderStyle = System.Windows.Forms.BorderStyle.None;
			this.MCountSel.CausesValidation = false;
			this.MCountSel.Location = new System.Drawing.Point(695, 322);
			this.MCountSel.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.MCountSel.Name = "MCountSel";
			this.MCountSel.ReadOnly = true;
			this.MCountSel.Size = new System.Drawing.Size(116, 15);
			this.MCountSel.TabIndex = 11;
			// 
			// Material
			// 
			this.Material.Text = "Material";
			// 
			// TransferList
			// 
			this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 16F);
			this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
			this.ClientSize = new System.Drawing.Size(804, 468);
			this.Controls.Add(this.MCountSel);
			this.Controls.Add(this.MCount);
			this.Controls.Add(this.listView1);
			this.Controls.Add(this.HelpBtn);
			this.Controls.Add(this.CancelBtn);
			this.Controls.Add(this.OKBtn);
			this.Margin = new System.Windows.Forms.Padding(4, 4, 4, 4);
			this.Name = "TransferList";
			this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
			this.Text = "Measurement Selection";
			this.ResumeLayout(false);
			this.PerformLayout();

        }
 /// <summary> 
 /// Méthode requise pour la prise en charge du concepteur - ne modifiez pas 
 /// le contenu de cette méthode avec l'éditeur de code.
 /// </summary>
 private void InitializeComponent()
 {
     this.listViewResults = new System.Windows.Forms.ListView();
     this.columnHeaderTitle = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineNumber = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.columnHeaderLineText = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
     this.label_Statistics = new System.Windows.Forms.Label();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.textBoxSearch = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBox_Scope = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripDropDownButton_Options = new System.Windows.Forms.ToolStripDropDownButton();
     this.toolStripMenuItem_RegExp = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_MatchCase = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WholeWord = new System.Windows.Forms.ToolStripMenuItem();
     this.toolStripMenuItem_WordStart = new System.Windows.Forms.ToolStripMenuItem();
     this.buttonSearch = new System.Windows.Forms.ToolStripButton();
     this.toolStrip1 = new System.Windows.Forms.ToolStrip();
     this.toolStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewResults
     //
     this.listViewResults.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.listViewResults.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeaderTitle,
     this.columnHeaderLineNumber,
     this.columnHeaderLineText});
     this.listViewResults.FullRowSelect = true;
     this.listViewResults.GridLines = true;
     this.listViewResults.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
     this.listViewResults.Location = new System.Drawing.Point(3, 28);
     this.listViewResults.MultiSelect = false;
     this.listViewResults.Name = "listViewResults";
     this.listViewResults.Size = new System.Drawing.Size(530, 147);
     this.listViewResults.TabIndex = 5;
     this.listViewResults.UseCompatibleStateImageBehavior = false;
     this.listViewResults.View = System.Windows.Forms.View.Details;
     //
     // columnHeaderTitle
     //
     this.columnHeaderTitle.Text = "Script";
     this.columnHeaderTitle.Width = 147;
     //
     // columnHeaderLineNumber
     //
     this.columnHeaderLineNumber.Text = "Line #";
     this.columnHeaderLineNumber.Width = 73;
     //
     // columnHeaderLineText
     //
     this.columnHeaderLineText.Text = "Text";
     this.columnHeaderLineText.Width = 278;
     //
     // label_Statistics
     //
     this.label_Statistics.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
     this.label_Statistics.AutoSize = true;
     this.label_Statistics.Location = new System.Drawing.Point(3, 178);
     this.label_Statistics.Name = "label_Statistics";
     this.label_Statistics.Size = new System.Drawing.Size(0, 13);
     this.label_Statistics.TabIndex = 10;
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(33, 22);
     this.toolStripLabel1.Text = "Find:";
     //
     // textBoxSearch
     //
     this.textBoxSearch.Name = "textBoxSearch";
     this.textBoxSearch.Size = new System.Drawing.Size(100, 25);
     this.textBoxSearch.KeyDown += new System.Windows.Forms.KeyEventHandler(this.toolStripTextBox_SearchString_KeyDown);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(20, 22);
     this.toolStripLabel3.Text = "In:";
     //
     // toolStripComboBox_Scope
     //
     this.toolStripComboBox_Scope.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBox_Scope.Items.AddRange(new object[] {
     "Open Scripts",
     "All Scripts"});
     this.toolStripComboBox_Scope.Name = "toolStripComboBox_Scope";
     this.toolStripComboBox_Scope.Size = new System.Drawing.Size(100, 25);
     //
     // toolStripDropDownButton_Options
     //
     this.toolStripDropDownButton_Options.DropDownItems.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripMenuItem_RegExp,
     this.toolStripMenuItem_MatchCase,
     this.toolStripMenuItem_WholeWord,
     this.toolStripMenuItem_WordStart});
     this.toolStripDropDownButton_Options.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripDropDownButton_Options.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.toolStripDropDownButton_Options.Name = "toolStripDropDownButton_Options";
     this.toolStripDropDownButton_Options.Size = new System.Drawing.Size(62, 22);
     this.toolStripDropDownButton_Options.Text = "Options";
     //
     // toolStripMenuItem_RegExp
     //
     this.toolStripMenuItem_RegExp.CheckOnClick = true;
     this.toolStripMenuItem_RegExp.Name = "toolStripMenuItem_RegExp";
     this.toolStripMenuItem_RegExp.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_RegExp.Text = "RegExp";
     this.toolStripMenuItem_RegExp.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_MatchCase
     //
     this.toolStripMenuItem_MatchCase.CheckOnClick = true;
     this.toolStripMenuItem_MatchCase.Name = "toolStripMenuItem_MatchCase";
     this.toolStripMenuItem_MatchCase.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_MatchCase.Text = "Match Case";
     this.toolStripMenuItem_MatchCase.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WholeWord
     //
     this.toolStripMenuItem_WholeWord.CheckOnClick = true;
     this.toolStripMenuItem_WholeWord.Name = "toolStripMenuItem_WholeWord";
     this.toolStripMenuItem_WholeWord.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WholeWord.Text = "Whole Word";
     this.toolStripMenuItem_WholeWord.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // toolStripMenuItem_WordStart
     //
     this.toolStripMenuItem_WordStart.CheckOnClick = true;
     this.toolStripMenuItem_WordStart.Name = "toolStripMenuItem_WordStart";
     this.toolStripMenuItem_WordStart.Size = new System.Drawing.Size(152, 22);
     this.toolStripMenuItem_WordStart.Text = "Word Start";
     this.toolStripMenuItem_WordStart.Click += new System.EventHandler(this.toolStripMenuItem_OptionsItem_Click);
     //
     // buttonSearch
     //
     this.buttonSearch.Image = Resources.Find3;
     this.buttonSearch.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.buttonSearch.Margin = new System.Windows.Forms.Padding(16, 1, 0, 2);
     this.buttonSearch.Name = "buttonSearch";
     this.buttonSearch.Overflow = System.Windows.Forms.ToolStripItemOverflow.Never;
     this.buttonSearch.Size = new System.Drawing.Size(65, 22);
     this.buttonSearch.Text = "Search!";
     //
     // toolStrip1
     //
     this.toolStrip1.GripStyle = System.Windows.Forms.ToolStripGripStyle.Hidden;
     this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel1,
     this.textBoxSearch,
     this.toolStripLabel3,
     this.toolStripComboBox_Scope,
     this.toolStripDropDownButton_Options,
     this.buttonSearch});
     this.toolStrip1.Location = new System.Drawing.Point(0, 0);
     this.toolStrip1.Name = "toolStrip1";
     this.toolStrip1.RenderMode = System.Windows.Forms.ToolStripRenderMode.System;
     this.toolStrip1.Size = new System.Drawing.Size(536, 25);
     this.toolStrip1.TabIndex = 9;
     this.toolStrip1.Text = "toolStrip1";
     //
     // SearchControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.label_Statistics);
     this.Controls.Add(this.toolStrip1);
     this.Controls.Add(this.listViewResults);
     this.Name = "SearchControl";
     this.Size = new System.Drawing.Size(536, 191);
     this.toolStrip1.ResumeLayout(false);
     this.toolStrip1.PerformLayout();
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.tabControl1 = new System.Windows.Forms.TabControl();
     this.tabPage1 = new System.Windows.Forms.TabPage();
     this.splitContainer2 = new System.Windows.Forms.SplitContainer();
     this.toolStripRequest = new System.Windows.Forms.ToolStrip();
     this.toolStripLabel2 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxProtocol = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator7 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel1 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripComboBoxMethod = new System.Windows.Forms.ToolStripComboBox();
     this.toolStripSeparator8 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripLabel3 = new System.Windows.Forms.ToolStripLabel();
     this.toolStripTextBoxURL = new System.Windows.Forms.ToolStripTextBox();
     this.toolStripSeparator3 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonCookies = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator9 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonAuthType = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator5 = new System.Windows.Forms.ToolStripSeparator();
     this.toolStripButtonSendRequest = new System.Windows.Forms.ToolStripButton();
     this.toolStripSeparator6 = new System.Windows.Forms.ToolStripSeparator();
     this.splitContainer4 = new System.Windows.Forms.SplitContainer();
     this.groupBox2 = new System.Windows.Forms.GroupBox();
     this.splitContainer1 = new System.Windows.Forms.SplitContainer();
     this.comboBoxRequestHeaders = new System.Windows.Forms.ComboBox();
     this.buttonAddToList = new System.Windows.Forms.Button();
     this.textBoxHeaderValue = new System.Windows.Forms.TextBox();
     this.listViewRequestHeaders = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.buttonDeleteHeader = new System.Windows.Forms.Button();
     this.groupBox3 = new System.Windows.Forms.GroupBox();
     this.richTextBoxPOST = new System.Windows.Forms.RichTextBox();
     this.tabControl4 = new System.Windows.Forms.TabControl();
     this.tabPage5 = new System.Windows.Forms.TabPage();
     this.listViewResponseHeaders = new System.Windows.Forms.ListView();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.tabPage6 = new System.Windows.Forms.TabPage();
     this.richTextBoxSource = new System.Windows.Forms.RichTextBox();
     this.tabPage7 = new System.Windows.Forms.TabPage();
     this.webBrowserSource = new System.Windows.Forms.WebBrowser();
     this.splitContainer3 = new System.Windows.Forms.SplitContainer();
     this.tabControl1.SuspendLayout();
     this.tabPage1.SuspendLayout();
     this.splitContainer2.Panel1.SuspendLayout();
     this.splitContainer2.Panel2.SuspendLayout();
     this.splitContainer2.SuspendLayout();
     this.toolStripRequest.SuspendLayout();
     this.splitContainer4.Panel1.SuspendLayout();
     this.splitContainer4.Panel2.SuspendLayout();
     this.splitContainer4.SuspendLayout();
     this.groupBox2.SuspendLayout();
     this.splitContainer1.Panel1.SuspendLayout();
     this.splitContainer1.Panel2.SuspendLayout();
     this.splitContainer1.SuspendLayout();
     this.groupBox3.SuspendLayout();
     this.tabControl4.SuspendLayout();
     this.tabPage5.SuspendLayout();
     this.tabPage6.SuspendLayout();
     this.tabPage7.SuspendLayout();
     this.splitContainer3.Panel1.SuspendLayout();
     this.splitContainer3.Panel2.SuspendLayout();
     this.splitContainer3.SuspendLayout();
     this.SuspendLayout();
     //
     // tabControl1
     //
     this.tabControl1.Controls.Add(this.tabPage1);
     this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl1.Location = new System.Drawing.Point(0, 0);
     this.tabControl1.Name = "tabControl1";
     this.tabControl1.SelectedIndex = 0;
     this.tabControl1.Size = new System.Drawing.Size(912, 313);
     this.tabControl1.TabIndex = 0;
     //
     // tabPage1
     //
     this.tabPage1.Controls.Add(this.splitContainer2);
     this.tabPage1.Location = new System.Drawing.Point(4, 22);
     this.tabPage1.Name = "tabPage1";
     this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage1.Size = new System.Drawing.Size(904, 287);
     this.tabPage1.TabIndex = 0;
     this.tabPage1.Text = "Request";
     this.tabPage1.UseVisualStyleBackColor = true;
     //
     // splitContainer2
     //
     this.splitContainer2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer2.Location = new System.Drawing.Point(3, 3);
     this.splitContainer2.Name = "splitContainer2";
     this.splitContainer2.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer2.Panel1
     //
     this.splitContainer2.Panel1.Controls.Add(this.toolStripRequest);
     //
     // splitContainer2.Panel2
     //
     this.splitContainer2.Panel2.Controls.Add(this.splitContainer4);
     this.splitContainer2.Size = new System.Drawing.Size(898, 281);
     this.splitContainer2.SplitterDistance = 25;
     this.splitContainer2.TabIndex = 2;
     //
     // toolStripRequest
     //
     this.toolStripRequest.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.toolStripLabel2,
     this.toolStripComboBoxProtocol,
     this.toolStripSeparator7,
     this.toolStripLabel1,
     this.toolStripComboBoxMethod,
     this.toolStripSeparator8,
     this.toolStripLabel3,
     this.toolStripTextBoxURL,
     this.toolStripSeparator3,
     this.toolStripButtonCookies,
     this.toolStripSeparator9,
     this.toolStripButtonAuthType,
     this.toolStripSeparator5,
     this.toolStripButtonSendRequest,
     this.toolStripSeparator6});
     this.toolStripRequest.Location = new System.Drawing.Point(0, 0);
     this.toolStripRequest.Name = "toolStripRequest";
     this.toolStripRequest.Size = new System.Drawing.Size(898, 25);
     this.toolStripRequest.TabIndex = 0;
     this.toolStripRequest.Text = "toolStrip1";
     //
     // toolStripLabel2
     //
     this.toolStripLabel2.Name = "toolStripLabel2";
     this.toolStripLabel2.Size = new System.Drawing.Size(46, 22);
     this.toolStripLabel2.Text = "Protocol";
     //
     // toolStripComboBoxProtocol
     //
     this.toolStripComboBoxProtocol.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxProtocol.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxProtocol.Items.AddRange(new object[] {
     "HTTP /1.0",
     "HTTP /1.1"});
     this.toolStripComboBoxProtocol.Name = "toolStripComboBoxProtocol";
     this.toolStripComboBoxProtocol.Size = new System.Drawing.Size(80, 25);
     //
     // toolStripSeparator7
     //
     this.toolStripSeparator7.Name = "toolStripSeparator7";
     this.toolStripSeparator7.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel1
     //
     this.toolStripLabel1.Name = "toolStripLabel1";
     this.toolStripLabel1.Size = new System.Drawing.Size(43, 22);
     this.toolStripLabel1.Text = "Method";
     //
     // toolStripComboBoxMethod
     //
     this.toolStripComboBoxMethod.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
     this.toolStripComboBoxMethod.FlatStyle = System.Windows.Forms.FlatStyle.Standard;
     this.toolStripComboBoxMethod.Items.AddRange(new object[] {
     "GET",
     "POST"});
     this.toolStripComboBoxMethod.Name = "toolStripComboBoxMethod";
     this.toolStripComboBoxMethod.Size = new System.Drawing.Size(75, 25);
     //
     // toolStripSeparator8
     //
     this.toolStripSeparator8.Name = "toolStripSeparator8";
     this.toolStripSeparator8.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripLabel3
     //
     this.toolStripLabel3.Name = "toolStripLabel3";
     this.toolStripLabel3.Size = new System.Drawing.Size(30, 22);
     this.toolStripLabel3.Text = "URL:";
     //
     // toolStripTextBoxURL
     //
     this.toolStripTextBoxURL.Name = "toolStripTextBoxURL";
     this.toolStripTextBoxURL.Size = new System.Drawing.Size(410, 25);
     //
     // toolStripSeparator3
     //
     this.toolStripSeparator3.Name = "toolStripSeparator3";
     this.toolStripSeparator3.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonCookies
     //
     this.toolStripButtonCookies.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonCookies.ImageTransparentColor = System.Drawing.Color.Transparent;
     this.toolStripButtonCookies.Name = "toolStripButtonCookies";
     this.toolStripButtonCookies.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonCookies.Text = "Define Cokies";
     this.toolStripButtonCookies.Click += new System.EventHandler(this.toolStripButtonCookies_Click);
     //
     // toolStripSeparator9
     //
     this.toolStripSeparator9.Name = "toolStripSeparator9";
     this.toolStripSeparator9.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonAuthType
     //
     this.toolStripButtonAuthType.DisplayStyle = System.Windows.Forms.ToolStripItemDisplayStyle.Image;
     this.toolStripButtonAuthType.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonAuthType.Name = "toolStripButtonAuthType";
     this.toolStripButtonAuthType.Size = new System.Drawing.Size(23, 22);
     this.toolStripButtonAuthType.Text = "Define Authentication";
     this.toolStripButtonAuthType.Click += new System.EventHandler(this.toolStripButtonAuthType_Click);
     //
     // toolStripSeparator5
     //
     this.toolStripSeparator5.Name = "toolStripSeparator5";
     this.toolStripSeparator5.Size = new System.Drawing.Size(6, 25);
     //
     // toolStripButtonSendRequest
     //
     this.toolStripButtonSendRequest.ImageTransparentColor = System.Drawing.Color.Magenta;
     this.toolStripButtonSendRequest.Name = "toolStripButtonSendRequest";
     this.toolStripButtonSendRequest.Size = new System.Drawing.Size(94, 22);
     this.toolStripButtonSendRequest.Text = "Send Request";
     this.toolStripButtonSendRequest.Click += new System.EventHandler(this.toolStripButtonSendRequest_Click);
     //
     // toolStripSeparator6
     //
     this.toolStripSeparator6.Name = "toolStripSeparator6";
     this.toolStripSeparator6.Size = new System.Drawing.Size(6, 25);
     //
     // splitContainer4
     //
     this.splitContainer4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer4.Location = new System.Drawing.Point(0, 0);
     this.splitContainer4.Name = "splitContainer4";
     //
     // splitContainer4.Panel1
     //
     this.splitContainer4.Panel1.Controls.Add(this.groupBox2);
     //
     // splitContainer4.Panel2
     //
     this.splitContainer4.Panel2.Controls.Add(this.groupBox3);
     this.splitContainer4.Size = new System.Drawing.Size(898, 252);
     this.splitContainer4.SplitterDistance = 546;
     this.splitContainer4.TabIndex = 0;
     //
     // groupBox2
     //
     this.groupBox2.Controls.Add(this.splitContainer1);
     this.groupBox2.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox2.Location = new System.Drawing.Point(0, 0);
     this.groupBox2.Name = "groupBox2";
     this.groupBox2.Size = new System.Drawing.Size(546, 252);
     this.groupBox2.TabIndex = 2;
     this.groupBox2.TabStop = false;
     this.groupBox2.Text = "Request Headers";
     //
     // splitContainer1
     //
     this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer1.Location = new System.Drawing.Point(3, 16);
     this.splitContainer1.Name = "splitContainer1";
     this.splitContainer1.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer1.Panel1
     //
     this.splitContainer1.Panel1.Controls.Add(this.comboBoxRequestHeaders);
     this.splitContainer1.Panel1.Controls.Add(this.buttonAddToList);
     this.splitContainer1.Panel1.Controls.Add(this.textBoxHeaderValue);
     //
     // splitContainer1.Panel2
     //
     this.splitContainer1.Panel2.Controls.Add(this.listViewRequestHeaders);
     this.splitContainer1.Panel2.Controls.Add(this.buttonDeleteHeader);
     this.splitContainer1.Size = new System.Drawing.Size(540, 233);
     this.splitContainer1.SplitterDistance = 33;
     this.splitContainer1.TabIndex = 1;
     //
     // comboBoxRequestHeaders
     //
     this.comboBoxRequestHeaders.FormattingEnabled = true;
     this.comboBoxRequestHeaders.Location = new System.Drawing.Point(3, 5);
     this.comboBoxRequestHeaders.Name = "comboBoxRequestHeaders";
     this.comboBoxRequestHeaders.Size = new System.Drawing.Size(169, 21);
     this.comboBoxRequestHeaders.TabIndex = 3;
     //
     // buttonAddToList
     //
     this.buttonAddToList.Location = new System.Drawing.Point(450, 3);
     this.buttonAddToList.Name = "buttonAddToList";
     this.buttonAddToList.Size = new System.Drawing.Size(87, 23);
     this.buttonAddToList.TabIndex = 2;
     this.buttonAddToList.Text = "Add to List";
     this.buttonAddToList.UseVisualStyleBackColor = true;
     this.buttonAddToList.Click += new System.EventHandler(this.buttonAddToList_Click);
     //
     // textBoxHeaderValue
     //
     this.textBoxHeaderValue.Location = new System.Drawing.Point(178, 5);
     this.textBoxHeaderValue.Name = "textBoxHeaderValue";
     this.textBoxHeaderValue.Size = new System.Drawing.Size(266, 20);
     this.textBoxHeaderValue.TabIndex = 1;
     //
     // listViewRequestHeaders
     //
     this.listViewRequestHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2});
     this.listViewRequestHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewRequestHeaders.FullRowSelect = true;
     this.listViewRequestHeaders.GridLines = true;
     this.listViewRequestHeaders.Location = new System.Drawing.Point(0, 0);
     this.listViewRequestHeaders.Name = "listViewRequestHeaders";
     this.listViewRequestHeaders.Size = new System.Drawing.Size(540, 173);
     this.listViewRequestHeaders.TabIndex = 0;
     this.listViewRequestHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewRequestHeaders.View = System.Windows.Forms.View.Details;
     this.listViewRequestHeaders.SelectedIndexChanged += new System.EventHandler(this.listViewRequestHeaders_SelectedIndexChanged);
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Header Name";
     this.columnHeader1.Width = 174;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Header Value";
     this.columnHeader2.Width = 333;
     //
     // buttonDeleteHeader
     //
     this.buttonDeleteHeader.Dock = System.Windows.Forms.DockStyle.Bottom;
     this.buttonDeleteHeader.Enabled = false;
     this.buttonDeleteHeader.Location = new System.Drawing.Point(0, 173);
     this.buttonDeleteHeader.Name = "buttonDeleteHeader";
     this.buttonDeleteHeader.Size = new System.Drawing.Size(540, 23);
     this.buttonDeleteHeader.TabIndex = 1;
     this.buttonDeleteHeader.Text = "Delete Headers";
     this.buttonDeleteHeader.UseVisualStyleBackColor = true;
     this.buttonDeleteHeader.Click += new System.EventHandler(this.buttonDeleteHeader_Click);
     //
     // groupBox3
     //
     this.groupBox3.Controls.Add(this.richTextBoxPOST);
     this.groupBox3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.groupBox3.Location = new System.Drawing.Point(0, 0);
     this.groupBox3.Name = "groupBox3";
     this.groupBox3.Size = new System.Drawing.Size(348, 252);
     this.groupBox3.TabIndex = 0;
     this.groupBox3.TabStop = false;
     this.groupBox3.Text = "POST";
     //
     // richTextBoxPOST
     //
     this.richTextBoxPOST.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxPOST.Location = new System.Drawing.Point(3, 16);
     this.richTextBoxPOST.Name = "richTextBoxPOST";
     this.richTextBoxPOST.Size = new System.Drawing.Size(342, 233);
     this.richTextBoxPOST.TabIndex = 0;
     this.richTextBoxPOST.Text = "";
     //
     // tabControl4
     //
     this.tabControl4.Controls.Add(this.tabPage5);
     this.tabControl4.Controls.Add(this.tabPage6);
     this.tabControl4.Controls.Add(this.tabPage7);
     this.tabControl4.Dock = System.Windows.Forms.DockStyle.Fill;
     this.tabControl4.Location = new System.Drawing.Point(0, 0);
     this.tabControl4.Name = "tabControl4";
     this.tabControl4.SelectedIndex = 0;
     this.tabControl4.Size = new System.Drawing.Size(912, 256);
     this.tabControl4.TabIndex = 0;
     //
     // tabPage5
     //
     this.tabPage5.Controls.Add(this.listViewResponseHeaders);
     this.tabPage5.Location = new System.Drawing.Point(4, 22);
     this.tabPage5.Name = "tabPage5";
     this.tabPage5.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage5.Size = new System.Drawing.Size(904, 230);
     this.tabPage5.TabIndex = 0;
     this.tabPage5.Text = "Response Headers";
     this.tabPage5.UseVisualStyleBackColor = true;
     //
     // listViewResponseHeaders
     //
     this.listViewResponseHeaders.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader3,
     this.columnHeader4});
     this.listViewResponseHeaders.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewResponseHeaders.Location = new System.Drawing.Point(3, 3);
     this.listViewResponseHeaders.Name = "listViewResponseHeaders";
     this.listViewResponseHeaders.Size = new System.Drawing.Size(898, 224);
     this.listViewResponseHeaders.TabIndex = 0;
     this.listViewResponseHeaders.UseCompatibleStateImageBehavior = false;
     this.listViewResponseHeaders.View = System.Windows.Forms.View.Details;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Header Name";
     this.columnHeader3.Width = 229;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "Header Value";
     this.columnHeader4.Width = 458;
     //
     // tabPage6
     //
     this.tabPage6.Controls.Add(this.richTextBoxSource);
     this.tabPage6.Location = new System.Drawing.Point(4, 22);
     this.tabPage6.Name = "tabPage6";
     this.tabPage6.Padding = new System.Windows.Forms.Padding(3);
     this.tabPage6.Size = new System.Drawing.Size(904, 230);
     this.tabPage6.TabIndex = 1;
     this.tabPage6.Text = "Source Code";
     this.tabPage6.UseVisualStyleBackColor = true;
     //
     // richTextBoxSource
     //
     this.richTextBoxSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.richTextBoxSource.Location = new System.Drawing.Point(3, 3);
     this.richTextBoxSource.Name = "richTextBoxSource";
     this.richTextBoxSource.Size = new System.Drawing.Size(898, 224);
     this.richTextBoxSource.TabIndex = 0;
     this.richTextBoxSource.Text = "";
     //
     // tabPage7
     //
     this.tabPage7.Controls.Add(this.webBrowserSource);
     this.tabPage7.Location = new System.Drawing.Point(4, 22);
     this.tabPage7.Name = "tabPage7";
     this.tabPage7.Size = new System.Drawing.Size(904, 230);
     this.tabPage7.TabIndex = 2;
     this.tabPage7.Text = "Browser";
     this.tabPage7.UseVisualStyleBackColor = true;
     //
     // webBrowserSource
     //
     this.webBrowserSource.Dock = System.Windows.Forms.DockStyle.Fill;
     this.webBrowserSource.Location = new System.Drawing.Point(0, 0);
     this.webBrowserSource.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowserSource.Name = "webBrowserSource";
     this.webBrowserSource.Size = new System.Drawing.Size(904, 230);
     this.webBrowserSource.TabIndex = 0;
     //
     // splitContainer3
     //
     this.splitContainer3.Dock = System.Windows.Forms.DockStyle.Fill;
     this.splitContainer3.Location = new System.Drawing.Point(0, 0);
     this.splitContainer3.Name = "splitContainer3";
     this.splitContainer3.Orientation = System.Windows.Forms.Orientation.Horizontal;
     //
     // splitContainer3.Panel1
     //
     this.splitContainer3.Panel1.Controls.Add(this.tabControl1);
     //
     // splitContainer3.Panel2
     //
     this.splitContainer3.Panel2.Controls.Add(this.tabControl4);
     this.splitContainer3.Size = new System.Drawing.Size(912, 573);
     this.splitContainer3.SplitterDistance = 313;
     this.splitContainer3.TabIndex = 1;
     //
     // frmMain
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.ClientSize = new System.Drawing.Size(912, 573);
     this.Controls.Add(this.splitContainer3);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name = "frmMain";
     this.Text = "Custom Request";
     this.tabControl1.ResumeLayout(false);
     this.tabPage1.ResumeLayout(false);
     this.splitContainer2.Panel1.ResumeLayout(false);
     this.splitContainer2.Panel1.PerformLayout();
     this.splitContainer2.Panel2.ResumeLayout(false);
     this.splitContainer2.ResumeLayout(false);
     this.toolStripRequest.ResumeLayout(false);
     this.toolStripRequest.PerformLayout();
     this.splitContainer4.Panel1.ResumeLayout(false);
     this.splitContainer4.Panel2.ResumeLayout(false);
     this.splitContainer4.ResumeLayout(false);
     this.groupBox2.ResumeLayout(false);
     this.splitContainer1.Panel1.ResumeLayout(false);
     this.splitContainer1.Panel1.PerformLayout();
     this.splitContainer1.Panel2.ResumeLayout(false);
     this.splitContainer1.ResumeLayout(false);
     this.groupBox3.ResumeLayout(false);
     this.tabControl4.ResumeLayout(false);
     this.tabPage5.ResumeLayout(false);
     this.tabPage6.ResumeLayout(false);
     this.tabPage7.ResumeLayout(false);
     this.splitContainer3.Panel1.ResumeLayout(false);
     this.splitContainer3.Panel2.ResumeLayout(false);
     this.splitContainer3.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.lblAnchorName = new System.Windows.Forms.Label();
     this.lblDiplayText = new System.Windows.Forms.Label();
     this.lblLvSelectedAnchor = new System.Windows.Forms.Label();
     this.lvSelectedAnchor = new System.Windows.Forms.ListView();
     this.txtDisplayText = new WLWStaticAnchorManager.ExtendedTextbox();
     this.txtAnchorName = new WLWStaticAnchorManager.ExtendedTextbox();
     this.SuspendLayout();
     //
     // lblAnchorName
     //
     this.lblAnchorName.AutoSize = true;
     this.lblAnchorName.Font = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FONT;
     this.lblAnchorName.ForeColor = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FORECOLOR;
     this.lblAnchorName.Location = new System.Drawing.Point(12, 60);
     this.lblAnchorName.Name = "lblAnchorName";
     this.lblAnchorName.Size = new System.Drawing.Size(92, 18);
     this.lblAnchorName.TabIndex = 10;
     this.lblAnchorName.Text = "Anchor Name";
     //
     // lblDiplayText
     //
     this.lblDiplayText.AutoSize = true;
     this.lblDiplayText.Font = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FONT;
     this.lblDiplayText.ForeColor = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FORECOLOR;
     this.lblDiplayText.Location = new System.Drawing.Point(12, 8);
     this.lblDiplayText.Name = "lblDiplayText";
     this.lblDiplayText.Size = new System.Drawing.Size(82, 18);
     this.lblDiplayText.TabIndex = 12;
     this.lblDiplayText.Text = "Display Text";
     //
     // lblLvSelectedAnchor
     //
     this.lblLvSelectedAnchor.AutoSize = true;
     this.lblLvSelectedAnchor.Font = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FONT;
     this.lblLvSelectedAnchor.ForeColor = global::WLWStaticAnchorManager.Properties.Settings.Default.FORM_LABEL_FORECOLOR;
     this.lblLvSelectedAnchor.Location = new System.Drawing.Point(12, 113);
     this.lblLvSelectedAnchor.Name = "lblLvSelectedAnchor";
     this.lblLvSelectedAnchor.Size = new System.Drawing.Size(93, 18);
     this.lblLvSelectedAnchor.TabIndex = 14;
     this.lblLvSelectedAnchor.Text = "Select Anchor";
     //
     // lvSelectedAnchor
     //
     this.lvSelectedAnchor.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
     | System.Windows.Forms.AnchorStyles.Right)));
     this.lvSelectedAnchor.Location = new System.Drawing.Point(15, 133);
     this.lvSelectedAnchor.Name = "lvSelectedAnchor";
     this.lvSelectedAnchor.Size = new System.Drawing.Size(521, 169);
     this.lvSelectedAnchor.TabIndex = 2;
     this.lvSelectedAnchor.UseCompatibleStateImageBehavior = false;
     //
     // txtDisplayText
     //
     this.txtDisplayText.AutoSize = true;
     this.txtDisplayText.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.txtDisplayText.BackColor = System.Drawing.Color.Silver;
     this.txtDisplayText.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtDisplayText.Location = new System.Drawing.Point(15, 26);
     this.txtDisplayText.Margin = new System.Windows.Forms.Padding(1);
     this.txtDisplayText.Name = "txtDisplayText";
     this.txtDisplayText.Size = new System.Drawing.Size(521, 21);
     this.txtDisplayText.TabIndex = 15;
     this.txtDisplayText.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtDisplayText.TextBoxBackColor = System.Drawing.SystemColors.Window;
     this.txtDisplayText.TextBoxBorderColor = System.Drawing.Color.Silver;
     //
     // txtAnchorName
     //
     this.txtAnchorName.AutoSize = true;
     this.txtAnchorName.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
     this.txtAnchorName.BackColor = System.Drawing.Color.Silver;
     this.txtAnchorName.Font = new System.Drawing.Font("Calibri", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
     this.txtAnchorName.Location = new System.Drawing.Point(15, 78);
     this.txtAnchorName.Margin = new System.Windows.Forms.Padding(1);
     this.txtAnchorName.Name = "txtAnchorName";
     this.txtAnchorName.Size = new System.Drawing.Size(521, 21);
     this.txtAnchorName.TabIndex = 16;
     this.txtAnchorName.TextAlign = System.Windows.Forms.HorizontalAlignment.Left;
     this.txtAnchorName.TextBoxBackColor = System.Drawing.SystemColors.Window;
     this.txtAnchorName.TextBoxBorderColor = System.Drawing.Color.Silver;
     //
     // pnlLinkEditor
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.txtAnchorName);
     this.Controls.Add(this.txtDisplayText);
     this.Controls.Add(this.lblLvSelectedAnchor);
     this.Controls.Add(this.lvSelectedAnchor);
     this.Controls.Add(this.lblDiplayText);
     this.Controls.Add(this.lblAnchorName);
     this.Name = "pnlLinkEditor";
     this.Size = new System.Drawing.Size(620, 315);
     this.ResumeLayout(false);
     this.PerformLayout();
 }
 /// <summary> 
 /// Required baseMethod for Designer support - do not modify 
 /// the contents of this baseMethod with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.components = new System.ComponentModel.Container();
     this.listViewSources = new System.Windows.Forms.ListView();
     this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
     this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
     this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
     this.copyToClipboardToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
     this.contextMenuStrip1.SuspendLayout();
     this.SuspendLayout();
     //
     // listViewSources
     //
     this.listViewSources.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
     this.listViewSources.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
     this.columnHeader1,
     this.columnHeader2,
     this.columnHeader3,
     this.columnHeader4});
     this.listViewSources.ContextMenuStrip = this.contextMenuStrip1;
     this.listViewSources.Dock = System.Windows.Forms.DockStyle.Fill;
     this.listViewSources.FullRowSelect = true;
     this.listViewSources.Location = new System.Drawing.Point(0, 0);
     this.listViewSources.Name = "listViewSources";
     this.listViewSources.Size = new System.Drawing.Size(874, 535);
     this.listViewSources.TabIndex = 0;
     this.listViewSources.UseCompatibleStateImageBehavior = false;
     this.listViewSources.View = System.Windows.Forms.View.Details;
     //
     // columnHeader1
     //
     this.columnHeader1.Text = "Name";
     this.columnHeader1.Width = 385;
     //
     // columnHeader2
     //
     this.columnHeader2.Text = "Class";
     this.columnHeader2.Width = 180;
     //
     // columnHeader3
     //
     this.columnHeader3.Text = "Type";
     this.columnHeader3.Width = 180;
     //
     // columnHeader4
     //
     this.columnHeader4.Text = "ID";
     this.columnHeader4.Width = 120;
     //
     // contextMenuStrip1
     //
     this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
     this.copyToClipboardToolStripMenuItem});
     this.contextMenuStrip1.Name = "contextMenuStrip1";
     this.contextMenuStrip1.Size = new System.Drawing.Size(172, 48);
     //
     // copyToClipboardToolStripMenuItem
     //
     this.copyToClipboardToolStripMenuItem.Name = "copyToClipboardToolStripMenuItem";
     this.copyToClipboardToolStripMenuItem.Size = new System.Drawing.Size(171, 22);
     this.copyToClipboardToolStripMenuItem.Text = "Copy to Clipboard";
     this.copyToClipboardToolStripMenuItem.Click += new System.EventHandler(this.copyToClipboardToolStripMenuItem_Click);
     //
     // SourceManagementComponentControl
     //
     this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
     this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
     this.Controls.Add(this.listViewSources);
     this.ImageName = "cube_molecule.png";
     this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
     this.Name = "SourceManagementComponentControl";
     this.Size = new System.Drawing.Size(874, 535);
     this.Load += new System.EventHandler(this.AdapterManagementOperatorControl_Load);
     this.Controls.SetChildIndex(this.listViewSources, 0);
     this.contextMenuStrip1.ResumeLayout(false);
     this.ResumeLayout(false);
     this.PerformLayout();
 }