Ejemplo n.º 1
0
        private CloseableTab InternalCreateTab(String user, IAccImSession imSes)
        {
            //create a new tab page
            CloseableTab tab = new CloseableTab();

            //add tab to hash and to tab control
            tab.Text       = user;
            tab.IM_Session = imSes;
            if (dicTabs.ContainsKey(user) == false)
            {
                dicTabs.Add(user, tab);
            }
            this.tbctrlMain.TabPages.Add(tab);

            //return the tab
            return(tab);
        }
Ejemplo n.º 2
0
 internal void RequestInfo(CloseableTab tab)
 {
     //request the info for the tab
     //Logic.Actions.GetBuddyInfo(dicTabs.Values[tab]
 }