String Array Resource : Binding « 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 » BindingScreenshots 
String Array Resource
String Array Resource
      

<Window x:Class="Main"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:sys="clr-namespace:System;assembly=mscorlib" 
    Title="">
  <Window.Resources>
    <x:ArrayExtension Type="{x:Type sys:String}"  x:Key="items">
      <sys:String>A</sys:String>
      <sys:String>B</sys:String>
      <sys:String>C</sys:String>
      <sys:String>D</sys:String>
    </x:ArrayExtension>
  </Window.Resources>
  <ListBox ItemsSource="{StaticResource items}" Width="120" Height="67">
    <ListBox.Template>
      <ControlTemplate TargetType="{x:Type ListBox}">
        <Border BorderThickness="1" BorderBrush="Black" CornerRadius="10">
          <ScrollViewer>
            <ScrollViewer.Clip>
              <RectangleGeometry Rect="0, 0, 100, 50"></RectangleGeometry>
            </ScrollViewer.Clip>
            <VirtualizingStackPanel IsItemsHost="True" />
          </ScrollViewer>
        </Border>
      </ControlTemplate>
    </ListBox.Template>
  </ListBox>
</Window>

   
    
    
    
    
    
  
Related examples in the same category
1.Bind to a Property of a UI ElementBind to a Property of a UI Element
2.Bind a Property of an Element to ItselfBind a Property of an Element to Itself
3.Specify a Default Value for a BindingSpecify a Default Value for a Binding
4.Create a Two-Way BindingCreate a Two-Way Binding
5.Debug Bindings Using Attached PropertiesDebug Bindings Using Attached Properties
6.Bind animate target value to Canvas(Window) widthBind animate target value to Canvas(Window) width
7.Display Current Date and Time: binding the DateTime.Now to LabelDisplay Current Date and Time: binding the DateTime.Now to Label
8.One way and two way bindingOne way and two way binding
9.Custom Element Binding WindowCustom Element Binding Window
10.Get XmlElement from Bounded viewGet XmlElement from Bounded view
11.Customize UpdateSourceExceptionFilterCustomize UpdateSourceExceptionFilter
12.Assign your own class to DataContent and bind to TextBoxAssign your own class to DataContent and bind to TextBox
13.Async bindingAsync binding
14.Null property bindingNull property binding
15.Binding Property with ExceptionBinding Property with Exception
16.Hierarchical Binding for three level nested objectsHierarchical Binding for three level nested objects
17.BindingOperations.GetBindingExpressionBindingOperations.GetBindingExpression
18.Bind to enum typesBind to enum types
19.Bind to a MethodBind to a Method
20.Manual Update TargetManual Update Target
21.Bind to the Values of an EnumerationBind to the Values of an Enumeration
22.Master Detail BindingMaster Detail Binding
23.Data binding using collections composed of mixed types of data.Data binding using collections composed of mixed types of data.
24.Binding Environment InfoBinding Environment Info
25.Bind to an ADO.NETDataSetBind to an ADO.NETDataSet
26.Text Data BindingText Data Binding
27.Bind to an Existing Object InstanceBind to an Existing Object Instance
28.Digital ClockDigital Clock
29.Use Data Triggers to Change the Appearance of Bound DataUse Data Triggers to Change the Appearance of Bound Data
www.__j___a_v__a__2___s__.c___o___m__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.