public Configuration()
 {
     InitializeComponent();
     if (Device.Idiom == TargetIdiom.Phone || Device.RuntimePlatform == "UWP")
     {
         Configuration_Default autocomplete = new Configuration_Default();
         this.Content      = autocomplete.getContent();
         this.PropertyView = autocomplete.getPropertyView();
     }
     else if (Device.Idiom == TargetIdiom.Tablet)
     {
         Configuration_Tablet autocompleteTab = new Configuration_Tablet();
         this.Content      = autocompleteTab.getContent();
         this.PropertyView = autocompleteTab.getPropertiesView();
     }
 }
 public Configuration()
 {
     InitializeComponent();
     if (Device.Idiom == TargetIdiom.Phone || Device.OS == TargetPlatform.Windows)
     {
         Configuration_Default autocomplete = new Configuration_Default();
         this.Content      = autocomplete.getContent();
         this.PropertyView = autocomplete.getPropertyView();
         this.Padding      = new Thickness(-10);
     }
     else if (Device.Idiom == TargetIdiom.Tablet)
     {
         Configuration_Tablet autocompleteTab = new Configuration_Tablet();
         this.Content      = autocompleteTab.getContent();
         this.PropertyView = autocompleteTab.getPropertiesView();
     }
 }