Advertisement
Pouknouki

Main Page Class

Dec 24th, 2013
180
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
VB.NET 0.58 KB | None | 0 0
  1.     Public _itemSelectedIndex As Int32
  2.  
  3.     Public Property itemSelectedIndex() As String
  4.         Get
  5.             Return _itemSelectedIndex
  6.         End Get
  7.         Private Set(ByVal value As String)
  8.             _itemSelectedIndex = value
  9.         End Set
  10.     End Property
  11.  
  12.     Public Sub New()
  13.         InitializeComponent()
  14.  
  15.         SupportedOrientations = SupportedPageOrientation.Portrait Or SupportedPageOrientation.Landscape
  16.         Me.DataContext = Me
  17.         ' Exemple de code pour la localisation d'ApplicationBar
  18.         'BuildLocalizedApplicationBar()
  19.  
  20.     End Sub
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement