UI With Page for Dynamic Button content : Page « Windows Presentation Foundation « VB.Net

Home
VB.Net
1.2D
2.Application
3.Class
4.Data Structure
5.Data Types
6.Database ADO.net
7.Date Time
8.Development
9.Event
10.File Directory
11.Generics
12.GUI
13.Internationalization I18N
14.Language Basics
15.LINQ
16.Network Remote
17.Reflection
18.Security
19.Thread
20.Windows Presentation Foundation
21.Windows System
22.XML
23.XML LINQ
VB.Net Tutorial
VB.Net by API
VB.Net » Windows Presentation Foundation » PageScreenshots 
UI With Page for Dynamic Button content
UI With Page for Dynamic Button content
     



<Page    
  xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  x:Class="QuickStart4.Page1">
  <StackPanel>
    <Button HorizontalAlignment="Left"
        Width="100"
        Margin="10,10,10,10"
        Click="HandleClick"
        Name="Button1">Click Me</Button>
  </StackPanel>
</Page>

//File:Page1.xaml.cs
Imports System
Imports System.Windows
Imports System.Windows.Controls

Namespace QuickStart4
  Public Partial Class Page1
    Inherits Page
    Private Sub HandleClick(sender As Object, e As RoutedEventArgs)
      Button1.Content = "Hello World"
    End Sub
  End Class
End Namespace

   
    
    
    
    
  
Related examples in the same category
1.Automatic InlineUIContainer generation: text along with ButtonAutomatic InlineUIContainer generation: text along with Button
2.Path Reference Page SnipPath Reference Page Snip
3.Create a button when the page loads.Create a button when the page loads.
4.Page Loaded eventPage Loaded event
5.Remember and navigate through multiple sets of state for a single page instanceRemember and navigate through multiple sets of state for a single page instance
6.Navigate to an instance of a custom class, instead of a Page.Navigate to an instance of a custom class, instead of a Page.
7.Select Product Page FunctionSelect Product Page Function
8.A XAML browser application (XBAP) running in partial trust can safely upload files from a client machine.A XAML browser application (XBAP) running in partial trust can safely upload files from a client machine.
ww___w___.ja_v__a_2_s_.___c__om__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.