記錄常用的Windows Phone Nuget套件:

 

小賢 發表在 痞客邦 留言(0) 人氣()

  在 Zoom Mode打開後,兩指放大後,會自動置左的問題,除了Zoom Mode = "true"外,還需設定HorizontalScrollBarVisibility="Auto" ,將水平捲軸顯示打開。


小賢 發表在 痞客邦 留言(0) 人氣()

string APSERVER_URI = "http://webservice.asmx";

 ServiceReference.wsSoapClient client = new ServiceReference.wsSoapClient(); 
client.Endpoint.Address = new System.ServiceModel.EndpointAddress(APSERVER_URI); 
var response = await client.MethodAsync(requestXML);

小賢 發表在 痞客邦 留言(0) 人氣()

1.開始->執行

2.輸入"inetcpl.cpl"會開啟網際網路選項,到進階裡的重設,重設完就能正常啟動ie了!!

小賢 發表在 痞客邦 留言(0) 人氣()

初始化

            Car car = new Car();
            car.root = new Root();
            car.root.list = new List();
            car.root.name = "海德格";
            car.root.data = "救我";
            for (int f = 0; f < 10; f++)
            {
                car.root.list.Add(f.ToString());
            }

class to json, then to xml

小賢 發表在 痞客邦 留言(0) 人氣()