尝试在progressBar中设置文本,我正在使用Setter。但我必须用以下内容来结束这个值:
{TemplateBinding Value}+"% Completed
如何与其他文本连接。
在进度条中打印文本的代码:
<Border x:Name="whiteBorder" >
<ContentPresenter x:Name="perHolder" Content="{TemplateBinding Value}" VerticalAlignment="Center" HorizontalAlignment="Right"/>
</Border>
Silverlight 3.0版
答案 0 :(得分:2)
另一种选择是使用inline elements,如run:
<TextBlock>
<Run Text="{TemplateBinding Value}"/>
<Run Text="% Completed "/>
</TextBlock>
修改强>
在查看您的示例后,我认为您不应在模板中使用内容展示器。内容呈现器用于可以托管内容的控件(读取:具有内容属性)。内容演示者,当给出一个字符串作为内容时,肯定会显示字符串,你可以使用它,但对于字符串,你最好的选择是文本块。它还使oyu能够更好地控制字符串的显示方式。
另外,我的不好。 TemplateBinding对于可用的位置非常挑剔,并且内联元素不在他的列表中。你最好的选择就像Cris W.说的那样,使用stackpanel:
<Border x:Name="whiteBorder" >
<StackPanel Orientation="Horizontal" VerticalAlignment="Center" HorizontalAlignment="Right">
<TextBlock Text="{TemplateBinding Value}"/>
<TextBlock Text="% Completed"/>
</StackPanel>/>
</Border>
答案 1 :(得分:1)
或者......您也可以使用StringFormat
<ContentPresenter x:Name="perHolder"
Content="{TemplateBinding Value, StringFormat='\{\0}% Completed'}"
VerticalAlignment="Center" HorizontalAlignment="Right"/>
希望这会有所帮助......
答案 2 :(得分:0)
要扩充值,请使用实现IValueConverter
的类,此处将对此进行描述:
http://msdn.microsoft.com/en-us/library/system.windows.data.ivalueconverter.aspx
实质上,实现IValueConverter
的类将在名为value
的方法中截取Convert
。从此方法返回的值是您真正想要显示的值。考虑:
名称空间Sharp {
public class MyConverter : IValueConverter {
public object Convert(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
// First cast the value to an 'int'.
Int32 theInputtedValue = (Int32)value;
// Then return the newly formatted string.
return String.Format("{0}% Completed", theInputtedValue);
}
public object ConvertBack(object value, Type targetType, object parameter, System.Globalization.CultureInfo culture) {
throw new NotImplementedException();
}
}
}
请注意,在上面的示例中,值转换器位于命名空间Sharp
中。现在我们将其添加到XAML定义中:
<Window x:Class="Sharp.MyWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:lol="clr-namespace:Sharp">
最后一行是我们的值转换器所在的命名空间(也就是说,lol
现在将指向Sharp
CLR命名空间。
接下来,我们将课程添加到Window
资源:
<Window.Resources>
<lol:MyConverter x:Key="TheValueConverter" />
</Window.Resources>
这将创建可在XAML中使用的类的实例。所以,到目前为止,我们的XAML看起来像这样:
<Window x:Class="Sharp.MyWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:lol="clr-namespace:Sharp">
<Window.Resources>
<lol:MyConverter x:Key="TheValueConverter" />
</Window.Resources>
现在我们只需将其添加到您的内容演示者中,如下所示:
<ContentPresenter Content="{TemplateBinding Value, Converter={StaticResource TheValueConverter}}" ... />
这告诉ContentPresenter
当它出现值时,它应该使用TheValueConverter
实例,它是我们ValueConverter
的一个实例。需要注意两件事:(1)确保使用实例(TheValueConverter
)的名称而不是类定义({{1 }})。 (2)确保将实例名称包装在MyConverter
。