เนื่องจาก ฺBeta มีการแก้ Namespaces และ assembly ในหลายๆ ตัว จึงเกิดปัญหาโปรเจคที่สร้างจาก CTP ไม่สามารถรันได้ใน Beta เราจะมาแก้ไขปัญหากัน
อันดับแรก ยุบรวม Namaspaces ดังนี้
Microsoft.Phone.Controls
Microsoft.Phone.Controls.Navigation
Microsoft.Phone.Controls.WebBrowser
Microsoft.Phone.Controls.WebBrowserInterop
Microsoft.Phone.Shell
Microsoft.Phone.Notification
Microsoft.Phone.Execution
Microsoft.Phone.Info
Microsoft.Phone.Tasks
Microsoft.Devices
เป็น
Microsoft.Phone
ดังนั้นจึงมีการแก้ไขดังนี้
|
ชนิด
|
เดิม
|
แก้ไข
|
|
namespace
|
Microsoft.Devices.NetworkInformation
|
Microsoft.Phone.Net.NetworkInformation
|
|
namespace
|
Microsoft.Phone.License
|
Microsoft.Phone.Marketplace
|
|
class
|
Microsoft.Phone.Controls.NavigatedEventArgs
|
System.Windows.Navigation.NavigationEventArgs
|
|
class
|
Microsoft.Phone.Navigation.PhoneNavigationEventArgs
|
System.Windows.Navigation.NavigationEventArgs
|
|
class
|
AccelerometerSensor
|
Accelerometer
|
|
class
|
AccelerometerReadingAsyncEventArgs
|
AccelerometerReadingEventArgs
|
|
class
|
AccelerometerStartFailedException
|
AccelerometerFailedException
|
|
class
|
WindowsPhoneEvents
|
Microsoft.Phone.Shell.PhoneApplicationService
|
|
class
|
Microsoft.Phone.License.LicenseInfo
|
Microsoft.Phone.Marketplace.LicenseInformation
|
|
enum
|
Microsoft.Phone.Shell.DownloadInterval
|
Microsoft.Phone.Shell.UpdateInterval
|
|
enum
|
Microsoft.Phone.Shell.DownloadRecurrence
|
Microsoft.Phone.Shell.UpdateRecurrence
|
|
class
|
NotificationChannelExceptionEventArgs
|
NotificationChannelErrorEventArgs
|
* ลบ references เดิมออกด้วย
และแก้ไข Project references ใน file xmls
|
เดิม
|
ใหม่
|
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.Navigation
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone
|
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls.WebBrowser
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone
|
|
clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone.Shell
|
clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone
|
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone.Controls
|
clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone
|
|
|
|
แก้ Text properties
|
เดิม
|
ใหม่
|
|
PhoneTextPageTitle1Style
|
PhoneTextNormalStyle
|
|
PhoneTextPageTitle2Style
|
PhoneTextTitle1Style
|
|
PhoneTextApplicationNameStyle
|
PhoneTextNormalStyle
|
|
PhoneTextTitleNameStyle
|
PhoneTextTitle1Style
|
แก้ Class
override void OnNavigatedFrom(Microsoft.Phone.Navigation.PhoneNavigationEventArgs e) เป็น
override void OnNavigatedFrom(System.Windows.Navigation.NavigationEventArgs e);