Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > Visual C++ MFC > Toolkit Pro
  New Posts New Posts RSS Feed - XAML needs to be taken further!
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

XAML needs to be taken further!

 Post Reply Post Reply
Author
Message
ABuenger View Drop Down
Newbie
Newbie
Avatar

Joined: 02 February 2006
Status: Offline
Points: 1075
Post Options Post Options   Thanks (0) Thanks(0)   Quote ABuenger Quote  Post ReplyReply Direct Link To This Post Topic: XAML needs to be taken further!
    Posted: 08 August 2008 at 6:55pm
Creating XTP controls shouldn't be done in code anymore. Instead of

reportCtrl.AddColumn(...);
reportCtrl.AddColumn(...);
...
reportCtrl.AddRecord(new CXTPReportRecord());
...
pRecord->AddItem(new CXTPReportRecordItemText());

it would be much better if I could have a XAML file with markup:

<xtp:ReportControl>
   <xtp:ReportControl:Column />
   <xtp:ReportControl:Column />

   <xtp:ReportControl:Record>
      <xtp:ReportControl:RecordItemText />
   </xtp:ReportControl:Record>

</xtp:ReportControl>


This should be supported by all your controls. This would also make the transition from MFC to your WinForms or WPF controls much easier.

Codejock support
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.141 seconds.