Hi Chris,
sorry for the late reply, so to compare I generated a VS 2010 Silverlight Application:
internal System.Windows.Controls.Grid LayoutRoot;
internal System.Windows.Controls.Button button1;
internal System.Windows.Controls.CheckBox checkBox1;
private bool _contentLoaded;
...
public void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded = true;
System.Windows.Application.LoadComponent(this, new System.Uri("/SilverlightApplica
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot")));
this.button1 = ((System.Windows.Controls.Button)(this.FindName("button1")));
this.checkBox1 = ((System.Windows.Controls.CheckBox)(this.FindName("checkBox1")));
In VS 11 Beta, it was the same as above except a name wasn't autogenerated in the XAML.
Could you post a quick snippet of the change you are seeing?
much appreciated,
mike
System.Windows.Controls.Grid LayoutRoot;
internal
System.Windows.Controls.Button button1;
private
bool _contentLoaded;
///
<summary>
///
InitializeComponent
///
</summary>
[System.Diagnostics.
DebuggerNonUserCodeAttribute()]
public
void InitializeComponent() {
if (_contentLoaded) {
return;
}
_contentLoaded =
true;
System.Windows.
Application.LoadComponent(this, new System.Uri("/Silverlight
this.LayoutRoot = ((System.Windows.Controls.Grid)(this.FindName("LayoutRoot
this.button1 = ((System.Windows.Controls.Button)(this.FindName("button1")))