所以我創建了一個帶有「ShowCode」屬性的userControl來學習如何使用屬性。我想要這個屬性隱藏網格中的第二行。爲什麼綁定不起作用?
查看:
<UserControl x:Class="Test.UserControl1"
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">
<Grid Margin="0,0,0,0" Name="outergrid" DataContext="{Binding}">
<Grid.RowDefinitions>
<RowDefinition Height="3*" />
<RowDefinition Height="1*" />
</Grid.RowDefinitions>
<ContentControl Name="XAMLView" Grid.Row="0"/>
<GridSplitter ResizeDirection="Rows"
Grid.Row="0"
VerticalAlignment="Bottom"
HorizontalAlignment="Stretch" />
<Border Width="11" Grid.Row="1" Background="Black" />
</Grid>
代碼:
public partial class UserControl1 : UserControl
{
public UserControl1()
{
InitializeComponent();
outergrid.RowDefinitions[1].SetBinding(RowDefinition.HeightProperty, new Binding() { Path = new PropertyPath("ShowCode"), Source = this, Converter = new BoolToHeightConverter(), ConverterParameter = "True" });
}
public bool ShowCode
{
get { return (bool)GetValue(ShowCodeProperty); }
set { SetValue(ShowCodeProperty, value); }
}
public static readonly DependencyProperty ShowCodeProperty =
DependencyProperty.Register("ShowCode",
typeof(bool),
typeof(UserControl1),
new PropertyMetadata(true, new PropertyChangedCallback(OnShowCodeChanged)));
static void OnShowCodeChanged(object sender, DependencyPropertyChangedEventArgs args)
{
UserControl1 source = (UserControl1)sender;
//source.outergrid.RowDefinitions[1].Height =
}
public class BoolToHeightConverter : IValueConverter
{
public object Convert(object value, Type targetType,
object parameter, System.Globalization.CultureInfo culture)
{
if ((string)parameter == "False") return "0";
return "1*";
}
public object ConvertBack(object value, Type targetType,
object parameter, System.Globalization.CultureInfo culture)
{
if ((int)parameter == 0) return false;
return true;
}
}
}
問題:當我使用它是這樣的:
<xamlviewer:UserControl1 ShowCode="False"/>
轉換(...)被調用2次和兩次「參數」呃「是」真「,否則如果ShowCode =」True「Convert()只被調用一次而」參數「又是」True「
爲什麼總是這樣?