Warning: file_get_contents(/data/phpspider/zhask/data//catemap/2/csharp/305.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
C# WPF-基于listviewitem选择更改控件。控件不更新_C#_Wpf_Mvvm_Controltemplates - Fatal编程技术网

C# WPF-基于listviewitem选择更改控件。控件不更新

C# WPF-基于listviewitem选择更改控件。控件不更新,c#,wpf,mvvm,controltemplates,C#,Wpf,Mvvm,Controltemplates,我正试图根据用户选择的listviewitem更新主窗口上的控件,但更改listviewitem选择后,控件不会更新 我用这篇文章作为参考 编辑:我最初使用ContentTemplate,但根据建议将其更改为DataTemplate,但它仍然没有更新 我的主窗口的XMAL是 <Window.Resources> <DataTemplate x:Key="Default"> <Grid Margin="20,280,0,0" />

我正试图根据用户选择的listviewitem更新主窗口上的控件,但更改listviewitem选择后,控件不会更新

我用这篇文章作为参考

编辑:我最初使用ContentTemplate,但根据建议将其更改为DataTemplate,但它仍然没有更新

我的主窗口的XMAL是

<Window.Resources>
    <DataTemplate x:Key="Default">
        <Grid Margin="20,280,0,0" />
    </DataTemplate>
    <DataTemplate x:Key="ERAFileSelect">
        <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="218" Margin="20,280,0,0" VerticalAlignment="Top" Width="257" CornerRadius="15">
            <Grid Name="grdFileSelect">
                <Label x:Name="lblProcessContent" Content="Drag File or Manually Select File" HorizontalAlignment="Center" VerticalAlignment="Top" Width="257" HorizontalContentAlignment="Center"/>
                <TextBox x:Name="txtEraFileName" HorizontalAlignment="Left" Height="23" Margin="10,80,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="235"/>
                <Button x:Name="btnSelectFiles" Content="Manually Select File(s)" HorizontalAlignment="Left" Margin="10,161,0,0" VerticalAlignment="Top" Width="235" Height="45"/>
            </Grid>
        </Border>
    </DataTemplate>
    <DataTemplate x:Key="FCSFileSelect">
        <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="218" Margin="20,280,0,0" VerticalAlignment="Top" Width="257" CornerRadius="15">
            <Grid Name="grdFileSelect">
                <Label x:Name="lblProcessContent" Content="Drag File or Manually Select Files" HorizontalAlignment="Center" VerticalAlignment="Top" Width="257" HorizontalContentAlignment="Center"/>
                <TextBox x:Name="txtFCSFileName_TQ02" HorizontalAlignment="Left" Height="23" Margin="10,40,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="174"/>
                <Button x:Name="btnSelectFiles_TQ02" Content="Select" HorizontalAlignment="Left" Margin="189,37,0,0" VerticalAlignment="Top" Width="56" Height="28"/>
                <TextBox x:Name="txtFCSFileName_TQ11" HorizontalAlignment="Left" Height="23" Margin="10,105,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="174"/>
                <Button x:Name="btnSelectFiles_TQ11" Content="Selec" HorizontalAlignment="Left" Margin="189,100,0,0" VerticalAlignment="Top" Width="56" Height="28"/>
                <TextBox x:Name="txtFCSFileName_TQ16" HorizontalAlignment="Left" Height="23" Margin="10,170,0,0" TextWrapping="Wrap" Text="TextBox" VerticalAlignment="Top" Width="174"/>
                <Button x:Name="btnSelectFiles_TQ16" Content="Select" HorizontalAlignment="Left" Margin="189,165,0,0" VerticalAlignment="Top" Width="56" Height="28"/>
            </Grid>
        </Border>
    </DataTemplate>
</Window.Resources>
<Grid Margin="0,0,2,0">
    <GroupBox x:Name="gbxProgress" Header="Progress" HorizontalAlignment="Left" Margin="298,105,0,0" VerticalAlignment="Top" Height="445" Width="462" Foreground="Black">
        <ListBox x:Name="lbxProgress" HorizontalAlignment="Left" Height="408" Margin="10,10,0,0" VerticalAlignment="Top" Width="431" Foreground="Black" IsSynchronizedWithCurrentItem="True" ItemsSource="{Binding Progress.Message}" />
    </GroupBox>
    <Button x:Name="btnStart" Content="Start" HorizontalAlignment="Left" Margin="20,513,0,0" VerticalAlignment="Top" Width="100" Height="37" IsEnabled="{Binding Properties.StartButtonEnabled}" Click="btnStart_Click"/>
    <Button x:Name="btnCancel" Content="Cancel" HorizontalAlignment="Left" Margin="177,513,0,0" VerticalAlignment="Top" Width="100" Height="37"/>
    <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="70" Margin="20,21,0,0" VerticalAlignment="Top" Width="740" CornerRadius="15">
        <Grid>
            <Image HorizontalAlignment ="Left" Margin="10" Height="50" Width="50" VerticalAlignment="Center" Source="/Lib/Icons/User.png" />
            <TextBlock Name="txtUser" FontSize="20" Height="30" Width="200" Foreground="Red" HorizontalAlignment="Left" Margin="78,19,0,19"/>
            <Image HorizontalAlignment ="Left" Margin="443,8,0,10" Height="50" Width="50" VerticalAlignment="Center" Source="Lib/Icons/Watch.png" />
            <TextBlock x:Name="txtRunTime" FontSize="20" Height="30" Width="200" Foreground="Red" HorizontalAlignment="Left" Margin="519,19,0,19" Text="{Binding AppRunTime.TimeElapsed}" />
        </Grid>
    </Border>
    <Border BorderBrush="Black" BorderThickness="1" HorizontalAlignment="Left" Height="144" Margin="20,119,0,0" VerticalAlignment="Top" Width="257" CornerRadius="15">
        <Grid>
            <Label x:Name="lblProcessSelection" Content="Process Selection" HorizontalAlignment="Center" VerticalAlignment="Top" Width="257" HorizontalContentAlignment="Center"/>
            <ListView x:Name="lvProcessSelection" HorizontalAlignment="Left" Height="93" Margin="10,30,0,0" VerticalAlignment="Top" Width="235" BorderThickness="0" SelectionChanged="lvProcessSelection_SelectionChanged">
                <ListViewItem Name="itmERA" Content="Expense Reserve Automation"/>
                <ListViewItem Name="itmFCS" Content="Financial Close Status"/>
                <ListViewItem Name="itmPEL" Content="Peel"/>
            </ListView>
        </Grid>
    </Border>
    <ContentControl DataContext="{Binding Properties}" Content="{Binding}">
    <ContentControl.Style>
            <Style TargetType="ContentControl">
                <Setter Property="ContentTemplate" Value="{StaticResource ERAFileSelect}"/>
                <Style.Triggers>
                    <DataTrigger Binding="{Binding SelectedProcess}" Value="Expense Reserve Automation">
                        <Setter Property="ContentTemplate" Value="{StaticResource ERAFileSelect}" />
                    </DataTrigger>
                    <DataTrigger Binding="{Binding SelectedProcess}" Value="Financial Close Status">
                        <Setter Property="ContentTemplate" Value="{StaticResource FCSFileSelect}" />
                    </DataTrigger>
                </Style.Triggers>
            </Style>
        </ContentControl.Style>
    </ContentControl>
</Grid>
使用MainWindowProperties类

public class MainWindowProperties
{
    public bool StartButtonEnabled { get; set; }

    public string SelectedProcess { get; set; }
}
在我的主窗口构造函数中,我设置了DataContext

        mainWindowModel = new MainWindowModel();
        this.DataContext = mainWindowModel;
当lvProcessSelection中的选择被更改时,将执行以下代码

        if (lvProcessSelection.SelectedItems.Count > 0)
        {
            mainWindowModel.Properties.SelectedProcess = ((ListViewItem)lvProcessSelection.SelectedItem).Content.ToString();
        }
        else
        {
            mainWindowModel.Properties.SelectedProcess = string.Empty;
        }
这将使用“费用准备金自动化”或“财务结算状态”更新我的ViewModel中的SelectedProcess

我知道DataContext已为我的ViewModel正确设置(但可能不适用于ContentControl),因为我可以使用新消息更新lbxProgress,并使用应用程序运行时更新txtRunTime

但是,当我更改lvProcessSelection上的选择时,什么也没有发生;ERAFileSelect的默认控件仍然保留


有人能告诉我如何解决这个问题的正确方向吗?

为什么不使用数据模板?数据模板将在此场景中工作

有人能告诉我如何解决这个问题的正确方向吗

MainWindowProperties类应实现INotifyPropertyChanged接口,并在SelectedProcess属性设置为新值时发出更改通知:

public class MainWindowProperties : INotifyPropertyChanged
{
    public bool StartButtonEnabled { get; set; }

    private string _selectedProcess;

    public string SelectedProcess
    {
        get { return _selectedProcess; }
        set { _selectedProcess = value; NotifyPropertyChanged(); }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}
有关此通用接口的更多信息,请参阅MSDN:


您绑定到的每个视图模型都必须实现此接口,并针对要更新的视图中的任何目标值发出更改通知。

将ControlTemplate更新为DataTemplate,然后在ContentControl中设置Property=“ContentTemplate”而不是Property=“Template”没有任何影响。控件仍不更新您需要设置内容控件的内容属性。Content=“{Binding}”这没有任何区别。ContentControl的其余绑定是否正确?对不起,我是WPF的新手。我已经更新了上面的XAML,以反映您的建议,谢谢。你知道为什么我的btnStart将其Enabled属性绑定到Properties.startButtoneEnabled,但当它从true更改为false时仍然有效吗?我真的很好奇。我看不到你在代码中设置StartButtoneEnabled属性的地方,所以我无法回答这个问题。但是,如果希望在运行时动态设置PropertyChanged事件,则应以与SelectedProcess属性相同的方式实现StartButtoneEnabled属性,并在其setter中引发PropertyChanged事件。
public class MainWindowProperties : INotifyPropertyChanged
{
    public bool StartButtonEnabled { get; set; }

    private string _selectedProcess;

    public string SelectedProcess
    {
        get { return _selectedProcess; }
        set { _selectedProcess = value; NotifyPropertyChanged(); }
    }

    public event PropertyChangedEventHandler PropertyChanged;
    private void NotifyPropertyChanged([CallerMemberName] String propertyName = "")
    {
        if (PropertyChanged != null)
            PropertyChanged(this, new PropertyChangedEventArgs(propertyName));
    }
}