Insert new line character to xaml attribute : Xaml « Windows Presentation Foundation « VB.Net






Insert new line character to xaml attribute

Insert new line character to xaml attribute
      

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" 
        xmlns:s="clr-namespace:System;assembly=mscorlib"
        xmlns:src="clr-namespace:WpfApplication1.EnvironmentInfo2" 
        Title="Environment Info">
    <Window.Resources>
        <src:FormattedMultiTextConverter x:Key="conv" />
    </Window.Resources>

    <TextBlock>
        <TextBlock.Text>
            <MultiBinding Converter="{StaticResource conv}"
                          ConverterParameter=
"Operating System Version: {0}
&#x000A;.NET Version: {1}
&#x000A;Machine Name: {2}
&#x000A;User Name: {3}" >
                <Binding Source="{x:Static s:Environment.OSVersion}" />
                <Binding Source="{x:Static s:Environment.Version}" />
                <Binding Source="{x:Static s:Environment.MachineName}" />
                <Binding Source="{x:Static s:Environment.UserName}" />
            </MultiBinding>
        </TextBlock.Text>
    </TextBlock>
</Window>
//File:Window.xaml.vb
Imports System
Imports System.Globalization
Imports System.Windows
Imports System.Windows.Data

Namespace WpfApplication1.EnvironmentInfo2
  Public Class FormattedMultiTextConverter
    Implements IMultiValueConverter
    Public Function Convert(value As Object(), typeTarget As Type, param As Object, culture As CultureInfo) As Object Implements IMultiValueConverter.Convert
      Return [String].Format(DirectCast(param, String), value)
    End Function
    Public Function ConvertBack(value As Object, typeTarget As Type(), param As Object, culture As CultureInfo) As Object() Implements IMultiValueConverter.ConvertBack
      Return Nothing
    End Function
  End Class
End Namespace

   
    
    
    
    
    
  








Related examples in the same category

1.A simple XAML structureA simple XAML structure
2.Properties in XAMLProperties in XAML
3.Embdded implementation of our button's Click event handlerEmbdded implementation of our button's Click event handler
4.Create a Standard WPF ApplicationCreate a Standard WPF Application
5.Inline click eventInline click event
6.Inlining code within a XAML fileInlining code within a XAML file
7.Inline declaration of a simple attributeInline declaration of a simple attribute
8.Explicit declaration of a complex attributeExplicit declaration of a complex attribute
9.Button with explicitly declared Background BrushButton with explicitly declared Background Brush
10.Button with a Background Brush declared using abbreviated markupButton with a Background Brush declared using abbreviated markup
11.Example of abbreviated markup versus explicit syntaxExample of abbreviated markup versus explicit syntax
12.Using Width to constrain the size of elementsUsing Width to constrain the size of elements
13.Display Control Content Surrounded by BracesDisplay Control Content Surrounded by Braces
14.WPF provides four different units of measures:WPF provides four different units of measures:
15.Draw a line from Point(0,0) to Point (100,100) on the canvas with the default units of device-independent pixelsDraw a line from Point(0,0) to Point (100,100) on the canvas with the default units of device-independent pixels
16.My First WPF App with code behindMy First WPF App with code behind
17.Create Button from Xaml stringCreate Button from Xaml string
18.A default miter limit of 10A default miter limit of 10
19.Pure XAML RSS Reader
20.Reference name defined in Xaml in vb fileReference name defined in Xaml in vb file
21.Add child controlAdd child control
22.Show Index of ControlsShow Index of Controls
23.Clear ControlsClear Controls
24.Contains Element?Contains Element?
25.Xaml and Code behindXaml and Code behind