如何将这 2 个操作变成 1 个操作?实际上我在后台代理中使用了,但是第二个操作无法执行并且无法获取值。任何的想法?
public void running()
{
ServiceReference1.WebServiceSoapClient test = new ServiceReference1.WebServiceSoapClient();
test.ReadTotalOutstandingInvoiceCompleted += new EventHandler<ServiceReference1.ReadTotalOutstandingInvoiceCompletedEventArgs>(serviceClient);
test.ReadTotalOutstandingInvoiceAsync();
}
public void serviceClient(object sender, ReadTotalOutstandingInvoiceCompletedEventArgs e)
{
answer = int.parse(e.Result.ToString());
}
更新:在后台代理:
VibrateController testVibrateControl = VibrateController.Default;
public int answer;
protected override void OnInvoke(ScheduledTask task)
{
//TODO: Add code to perform your task in background
running();
ShellTile t = ShellTile.ActiveTiles.First();
StandardTileData d = new StandardTileData()
{
Title = "U have " + answer + " Invoice!!",
BackTitle = "How Are You!!",
//Count = 0,
// BackBackgroundImage = new Uri("dog.jpg", UriKind.Relative),
// BackgroundImage = new Uri("untitled.png", UriKind.Relative)
};
t.Update(d);
testVibrateControl.Start(TimeSpan.FromSeconds(3));
testVibrateControl.Stop();
//ShellTile.Create(new Uri("/MainPage.xaml?pp=cas", UriKind.Relative), d);
NotifyComplete();
}
在主页:
private void CheckBox_Checked_1(object sender, RoutedEventArgs e)
{
try
{
PeriodicTask p = new PeriodicTask("jj");
p.Description = "Don't push the red button";
ScheduledActionService.Add(p);
//ScheduledActionService.LaunchForTest(p.Name, TimeSpan.FromSeconds(2));
#if (DEBUG_AGENT)
ScheduledActionService.LaunchForTest(p.Name, TimeSpan.FromSeconds(2));
#endif
}
catch (Exception ex)
{
}
}