1. Live Connect Developer Center
http://msdn.microsoft.com/en-us/live/
2.SignIn Scopes and permissions(wl.xxx)
http://msdn.microsoft.com/en-us/library/live/hh243646
3.Sigining Users in(c#)
http://msdn.microsoft.com/en-us/library/live/hh826543#csharp
4.Get Live Client Id
http://manage.dev.live...
[More]
1. Xaml Code inside root Grid element
<phone:PhoneApplicationPage.ApplicationBar>
<shell:ApplicationBar IsVisible="True" IsMenuEnabled="True"
&nb...
[More]
1. When do we use Dispatcher?
For example, if we create a new thread that will deal some time cost stuff. After the thread finish its work, we want to update the WPF UI. Then, it is time to use Dispatcher.
Dispatcher.Invoke(new Action(MethodName), null);
If ...
[More]
1. Add reference to Microsoft.Xna.Framework dll .
2. Replace Grid xaml code with the following code:
<Grid x:Name="LayoutRoot">
<!--ContentPanel - place additional content here-->
<Grid x:Name="ContentP...
[More]
InkPresenter only allow on point drawing, To achieve multi-touch draw, in other words, draw with more than one finger. we'd implement the Touch.FrameReported event. here is what I have done:
public MainPage()
{
InitializeComponent();
Touch.FrameReported ...
[More]
Please run it in Chrome or Firefox or IE10
First, Add xaml elements page:
<Grid x:Name="ContentPanel" Margin="0,0,0,1" Background="White"
Width="450" Height="400">
<InkPresenter Background="Transparent" Margin="10,10,10,10"
&n...
[More]
Run back ground task in windows phone 7.5,
First. Create a Windows Phone Scheduled Task Agent project, name it for example: "BackGroundAgent". Open the default created ScheduledAgent.cs file. Write agent code in OnInvoke method:
protected override void OnInvoke(ScheduledTask&n...
[More]
Timer code runs in WP7:
timer = new DispatcherTimer();
timer.Interval = new TimeSpan(0, 0, 1);//or TimeSpan.FromSeconds(1)
timer.Tick += (sender,e) =>
{
count++;
txtTimer.Text = count...
[More]
Normal 0 false false false EN-US ZH-CN X-NONE A virtualized file system can only be accessed by your application. I think this ...
[More]