※リストが表示されない場合
AddBlockなどの広告ブロックツールがONになっているとリストなどが表示されない場合があります。これらのツールをOFFにしてみてください。
・MainPage.xaml.csのソースコード
using System;
using System.Collections.Generic;
using System.Linq;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using Microsoft.Phone.Controls;
namespace PhoneApp1
{
public partial class MainPage : PhoneApplicationPage
{
// Constructor
public MainPage()
{
InitializeComponent();
}
}
}
・MainPage.g.i.csのソースコード
using Microsoft.Phone.Controls;
using System;
using System.Windows;
using System.Windows.Automation;
using System.Windows.Automation.Peers;
using System.Windows.Automation.Provider;
using System.Windows.Controls;
using System.Windows.Controls.Primitives;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Interop;
using System.Windows.Markup;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Media.Imaging;
using System.Windows.Resources;
using System.Windows.Shapes;
using System.Windows.Threading;
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;
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")));
}
}
}
| << 前へ | 次へ >> |