internal System.Windows.Controls.TextBox textBox1;
internal System.Windows.Controls.Button button1;
internal System.Windows.Controls.TextBlock textBlock1;
this.textBox1 = ((System.Windows.Controls.TextBox)
(this.FindName("textBox1")));
this.button1 = ((System.Windows.Controls.Button)
(this.FindName("button1")));
this.textBlock1 = ((System.Windows.Controls.TextBlock)
(this.FindName("textBlock1")));
※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
※MainPage.g.i.csの内容 using ……略…… namespace PhoneApp1 { public partial class MainPage : Microsoft.Phone.Controls.PhoneApplicationPage { internal System.Windows.Controls.Grid LayoutRoot; internal System.Windows.Controls.StackPanel TitlePanel; internal System.Windows.Controls.TextBlock ApplicationTitle; internal System.Windows.Controls.TextBlock PageTitle; internal System.Windows.Controls.Grid ContentPanel; internal System.Windows.Controls.TextBox textBox1; internal System.Windows.Controls.Button button1; internal System.Windows.Controls.TextBlock textBlock1; private bool _contentLoaded; [System.Diagnostics.DebuggerNonUserCodeAttribute()] public void InitializeComponent() { if (_contentLoaded) { return; } _contentLoaded = true; System.Windows.Application.LoadComponent(this, new System.Uri("/PhoneApp1;component/MainPage.xaml", System.UriKind.Relative)); this.LayoutRoot = ((System.Windows.Controls.Grid) (this.FindName("LayoutRoot"))); this.TitlePanel = ((System.Windows.Controls.StackPanel) (this.FindName("TitlePanel"))); this.ApplicationTitle = ((System.Windows.Controls.TextBlock) (this.FindName("ApplicationTitle"))); this.PageTitle = ((System.Windows.Controls.TextBlock) (this.FindName("PageTitle"))); this.ContentPanel = ((System.Windows.Controls.Grid) (this.FindName("ContentPanel"))); this.textBox1 = ((System.Windows.Controls.TextBox) (this.FindName("textBox1"))); this.button1 = ((System.Windows.Controls.Button) (this.FindName("button1"))); this.textBlock1 = ((System.Windows.Controls.TextBlock) (this.FindName("textBlock1"))); } } }
<< 前へ | 次へ >> |