Bug Report Q501484
Visible to All Users

TcxPageControl - The component editor does not take into consideration the Properties.TabSheetClass property value when creating new pages

created 12 years ago

The component editor registered for TcxPageControl does not take in consideration the value of Properties.TabSheetClass.
This is giving me problems, because I am writing a page control descendant that uses also a TcxTabSheet descendant for its pages, and, at design time, the component editor insists in creating pages of the parent class.

I managed to correct this problem by fixing the component editor this way (the commented lines are the original lines I changed)

Delphi
procedure TcxPageControlComponentEditor.AddPage; var Page: TcxTabSheet; begin Page := GetPageControl.Properties.TabSheetClass.Create(Designer.GetRoot); // Page := TcxTabSheet.Create(Designer.GetRoot); Page.Name := Designer.UniqueName(page.ClassName); //Page.Name := Designer.UniqueName(TcxTabSheet.ClassName); Page.PageControl := PageControl; Page.ImageIndex := Page.TabIndex; PageControl.ActivePage := Page; Designer.SelectComponent(Page); end;

Could you please verify this and add it to the official sources?

thank you,
Carlo Sirna

Comments (1)
DevExpress Support Team 12 years ago

    Hello,
    It seems that you are right, your code looks correct. I have forwarded this ticket to our developers for further research.

    Answers approved by DevExpress Support

    created 12 years ago (modified 12 years ago)

    We have fixed the issue described in this ticket and will include the fix in our next maintenance update. To apply this solution before the official update, request a hotfix by clicking the corresponding link for product versions you require.

    Note: Hotfixes may be unavailable for beta versions and updates that are about to be released.

      Comments (1)

        Ehm, I don't need the hot fix, sorry, I clicked it by mistake…

        Disclaimer: The information provided on DevExpress.com and affiliated web properties (including the DevExpress Support Center) is provided "as is" without warranty of any kind. Developer Express Inc disclaims all warranties, either express or implied, including the warranties of merchantability and fitness for a particular purpose. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.

        Confidential Information: Developer Express Inc does not wish to receive, will not act to procure, nor will it solicit, confidential or proprietary materials and information from you through the DevExpress Support Center or its web properties. Any and all materials or information divulged during chats, email communications, online discussions, Support Center tickets, or made available to Developer Express Inc in any manner will be deemed NOT to be confidential by Developer Express Inc. Please refer to the DevExpress.com Website Terms of Use for more information in this regard.