{
public NavigationWindowController()
{
InitializeComponent();
RegisterActions(components);
}
protected override void OnActivated()
{
base.OnActivated();
CustomizeWindowCaption += new EventHandler
// CollectCreatableItemTypes+=new EventHandler
}
void NavigationWindowController_CustomizeWindowCaption(object sender, CustomizeWindowCaptionEventArgs e)
{
e.WindowCaption.FirstPart = "HRMS";
e.WindowCaption.SecondPart = "Payroll";
e.WindowCaption.Separator = "-";
e.WindowCaption.Text = "Welcome to The World 1st IAF.Net ERP Solution Provider";
}
No comments:
Post a Comment