Quiero mostrar una lista de objetos Customer en WPF ItemsControl. Creé un DataTemplate para esto:
<DataTemplate DataType="{x:Type myNameSpace:Customer}">
<StackPanel Orientation="Horizontal" Margin="10">
<CheckBox"></CheckBox>
<TextBlock Text="{Binding Path=Number}"></TextBlock>
<TextBlock Text=" - "></TextBlock>
<TextBlock Text="{Binding Path=Name}"></TextBlock>
</StackPanel>
</DataTemplate>
Entonces, lo que quiero básicamente es una lista simple (con casillas de verificación) que contenga NUMBER - NAME. ¿No hay alguna forma en la que pueda concatizar el número y el nombre directamente en la parte de enlace?
fuente
En caso de que desee concatizar un valor dinámico con un texto estático, intente esto:
<TextBlock Text="{Binding IndividualSSN, StringFormat= '\{0\} (SSN)'}"/>
Pantallas : 234-334-5566 (SSN)
fuente
Vea el siguiente ejemplo que usé en mi código usando la clase Ejecutar:
<TextBlock x:Name="..." Width="..." Height="..." <Run Text="Area="/> <Run Text="{Binding ...}"/> <Run Text="sq.mm"/> <LineBreak/> <Run Text="Min Diameter="/> <Run Text="{Binding...}"/> <LineBreak/> <Run Text="Max Diameter="/> <Run Text="{Binding...}"/> </TextBlock >
fuente
También puede utilizar una ejecución enlazable. Cosas útiles, especialmente si se quiere agregar algún formato de texto (colores, tamaño de fuente, etc.).
<TextBlock> <something:BindableRun BoundText="{Binding Number}"/> <Run Text=" - "/> <something:BindableRun BoundText="{Binding Name}"/> </TextBlock>
Aquí hay una clase original:
aquí hay algunas mejoras adicionales.
Y eso es todo en una sola pieza de código:
public class BindableRun : Run { public static readonly DependencyProperty BoundTextProperty = DependencyProperty.Register("BoundText", typeof(string), typeof(BindableRun), new PropertyMetadata(new PropertyChangedCallback(BindableRun.onBoundTextChanged))); private static void onBoundTextChanged(DependencyObject d, DependencyPropertyChangedEventArgs e) { ((Run)d).Text = (string)e.NewValue; } public String BoundText { get { return (string)GetValue(BoundTextProperty); } set { SetValue(BoundTextProperty, value); } } public BindableRun() : base() { Binding b = new Binding("DataContext"); b.RelativeSource = new RelativeSource(RelativeSourceMode.FindAncestor, typeof(FrameworkElement), 1); this.SetBinding(DataContextProperty, b); } }
fuente