Ejemplo n.º 1
0
        /// <summary>
        /// Constructor.
        /// </summary>
        public PluginListDialog(PluginManager pManager)
        {
            m_pManager = pManager;
            InitializeComponent();
            Dictionary<String, String> list = m_pManager.GetPluginVersionList();
            List<String> tmpList = new List<string>();
            foreach (String n in list.Keys)
            {
                tmpList.Add(n);
            }

            tmpList.Sort();
            foreach (String n in tmpList)
            {
                versionListView.Rows.Add(new object[] { n, list[n] });
            }
        }