Level Extreme platform
Subscription
Corporate profile
Products & Services
Support
Legal
Français
Exactly when should you call InitializeComponent()?
Message
From
30/07/2008 14:57:15
 
 
To
30/07/2008 11:46:01
General information
Forum:
ASP.NET
Category:
Windows Presentation Foundation (WPF)
Miscellaneous
Thread ID:
01335283
Message ID:
01335337
Views:
13
>when is the right time to call InitializeComponent();?
>
>
>
>     public Window1()
>        {
>
>            HolePatterns = new ObservableCollection<HolePattern>();
>            HolePatterns.CollectionChanged += new NotifyCollectionChangedEventHandler(HolePatterns_CollectionChanged);
>
>            CurrentHolePattern = new HolePattern();
>            CurrentHolePattern.PatternName = "Test Pattern Name";
>
>            //-- Set some default values for the UI
>            CurrentHolePattern.BoltCirDia = 12.0;
>            CurrentHolePattern.HoleCount = 6;
>            CurrentHolePattern.StartAngle = 0;
>
>            HolePatterns.Add(CurrentHolePattern);
>
>            InitializeComponent();
>
>            SketchX0 = canvas1.Width / 2;
>            SketchY0 = canvas1.Height / 2;
>            SketchBoltCirRad = canvas1.Width / 2 * .7;
>
>
>            CoordinateGrid.ItemsSource = CurrentHolePattern.HoleList;
>
>            RedrawScreen();
>
>
>        }
>
Where you are calling it is fine. You need to call it before you can reference any item in XAML.
Previous
Reply
Map
View

Click here to load this message in the networking platform