Ejemplo n.º 1
0
 internal PropertyPageInfo[] ToPropertyPageInfoArray()
 {
     PropertyPageInfo[] infoArray = new PropertyPageInfo[base.Count];
     int index = 0;
     foreach (PropertyPage page in this)
     {
         infoArray[index] = new PropertyPageInfo();
         infoArray[index].Width = page.Control.Width;
         infoArray[index].Height = page.Control.Height;
         infoArray[index].Title = page.Title;
         infoArray[index].HelpTopic = page.HelpTopic;
         index++;
     }
     return infoArray;
 }
Ejemplo n.º 2
0
 public void SetPropertyPages(PropertyPageInfo[] propertyPagesData)
 {
     this._propertyPagesData = propertyPagesData;
 }