How to determine and display the device name in the textbox? Like: "Lumia 950"

    1 answer 1

    This info can be pulled from the class EasClientDeviceInformation

     EasClientDeviceInformation eas = new EasClientDeviceInformation(); var deviceManufacturer = eas.SystemManufacturer; var deviceModel = eas.SystemProductName;