UserControl Contents只在第一次显示时更新
本文关键字:显示 更新 第一次 Contents UserControl | 更新日期: 2023-09-27 18:04:43
我遇到了一个在自定义UserControl中绑定数据的问题。
这是一个错误对话框,如果在用户输入中发现错误,则在按下按钮时调用。
在控件中,我有两个对象,一个退出按钮和一个包含错误的字符串列表。
我的问题是,用户控件上的列表是第一次设置对话框可见性为true,然后不刷新之后。当我改变列表时,我正在调用OnNotifyPropertyChange,但它似乎仍然没有区别。
My MainContent XAML UserContent Section.
<Grid x:Name="Overlay" Panel.ZIndex="1000" Visibility="{Binding Path=ShowOverlay, Converter={StaticResource booltoVis},FallbackValue=Hidden }" Grid.Row="2" Grid.RowSpan="2">
<Grid.Background>
<SolidColorBrush Color="Black" Opacity=".5"/>
</Grid.Background>
<View:UserControl1>
<View:UserControl1.MainContent>
<ListBox ItemsSource="{Binding Path=Error_Message_List, Mode=TwoWay}" />
</View:UserControl1.MainContent>
<View:UserControl1.DialogExitButton>
<Button Command="{Binding Path=CloseModalDialogClickCommand}" Content="OK">
</Button>
</View:UserControl1.DialogExitButton>
</View:UserControl1>
</Grid>
My User Control绑定XAML
<Grid Margin="5" Background="White">
<Grid.RowDefinitions>
<RowDefinition Height="0.1*"/>
<RowDefinition Height="0.6*"/>
<RowDefinition Height="0.2*"/>
</Grid.RowDefinitions>
<TextBlock Text="Error in script generation!" FontWeight="Bold"/>
<ContentControl Content="{Binding MainContent, ElementName=XAMLErrorPopupControl}" Grid.Row="1"/>
<ContentControl Content="{Binding DialogExitButton, ElementName=XAMLErrorPopupControl}" Grid.Row="2" Margin="224,0,0,0"/>
</Grid>
My User Control code-behind
public static readonly DependencyProperty MainContentProperty =
DependencyProperty.Register(
"MainContent",
typeof(object),
typeof(UserControl1),
new FrameworkPropertyMetadata(default(object),
FrameworkPropertyMetadataOptions.BindsTwoWayByDefault));
public object MainContent
{
get { return (object)GetValue(MainContentProperty); }
set { SetValue(MainContentProperty, value); OnPropertyChanged("MainContent"); }
}
public static readonly DependencyProperty DialogExitButtonProperty =
DependencyProperty.Register(
"DialogExitButton",
typeof(object),
typeof(UserControl1),
new UIPropertyMetadata(null));
public object DialogExitButton
{
get { return (object)GetValue(DialogExitButtonProperty); }
set { SetValue(DialogExitButtonProperty, value); OnPropertyChanged("DialogExitButton"); }
}
任何帮助将非常感激!干杯!
首先: Error_Message_List
必须是一个ObservableCollection<YourItemType>
,能够在添加/删除时通知UI。
第二: YourItemType
必须实现INotifyPropertyChanged
,当列表中的项被修改时通知UI 。