WMAppManifest.xml 에
<Capability Name="ID_CAP_IDENTITY_DEVICE"/>
를 추가하고
string model = null;
object theModel = null;
if (Microsoft.Phone.Info.DeviceExtendedProperties.TryGetValue("DeviceName", out theModel))
model = theModel as string;
MessageBox.Show(model);
를 코딩하면 된다.
출처 : http://www.nickharris.net/2011/01/finding-the-device-model-on-windows-phone-7/
'Windows Phone 7' 카테고리의 다른 글
[wp7] 모바일 앱에 광고 탑재하는법 (2) | 2011.04.26 |
---|---|
[wp7] 폰에서 유니크한 ID 만들기 (0) | 2011.04.25 |
[wp7] MVVM에서의 Invalid cross-thread access.메세지 (0) | 2011.03.31 |
[wp7] Command를 Behind에서 사용하자 (0) | 2011.03.31 |
[wp7] 윈도우 폰 캡쳐 프로그램 (0) | 2011.03.25 |