您也可以從TextBlock的(而不是用戶控件)導出後:
<TextBlock x:Class="WpfGridRowHeightStackOverflowQuestion.MyRotatedTextBlock"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
HorizontalAlignment="Center"
VerticalAlignment="Center">
<TextBlock.LayoutTransform>
<RotateTransform Angle="90"/>
</TextBlock.LayoutTransform>
</TextBlock>
然後,只需使用Text屬性從TextBlock的是這樣的:
<myNamespace:MyRotatedTextBlock Grid.Row="1" Grid.Column="0" Text="MyHeader2"></myNamespace:MyRotatedTextBlock>
編輯
這樣它可以作爲一個用戶控件以及(因爲b的的ElementName inding明確指定用戶控件的名稱):
<UserControl x:Class="WpfGridRowHeightStackOverflowQuestion.MyRotatedTextBlock"
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"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300"
Name="CustomRotatedTextBlock">
<TextBlock Text="{Binding ElementName=CustomRotatedTextBlock,Path=MyText}" HorizontalAlignment="Center" VerticalAlignment="Center">
<TextBlock.LayoutTransform>
<RotateTransform Angle="90"/>
</TextBlock.LayoutTransform>
</TextBlock>
</UserControl>
然後,我落後了INotifyPropertyChanged的(這WPF依賴於大量使用更改通知代碼;)
public partial class MyRotatedTextBlock : UserControl, INotifyPropertyChanged
{
public MyRotatedTextBlock()
{
InitializeComponent();
}
private String _myText;
public String MyText
{
get { return _myText; }
set {
_myText = value;
if (PropertyChanged != null)
PropertyChanged(this, new PropertyChangedEventArgs("MyText"));
}
}
#region INotifyPropertyChanged Members
public event PropertyChangedEventHandler PropertyChanged;
#endregion
}
請問你控制包含任何文字? TextBlock應該自動調整其內容的大小。我可以看到,您已將控件的Text屬性綁定到「MyText」,並且您將該屬性設置爲「MyHeader2」 - 您的自定義控件中的文本綁定可能是否存在問題? –
(我編輯了這個問題。)不,它被正確綁定,因爲它是我手動擴展行的高度時顯示的。 – Bijan
爲什麼你實際上引入了一個新的屬性MyText,而不是使用TextBlock的Text屬性(你可能從中派生出來的)? –