如何在“导体收集”设置为“AllActive”时停用项
本文关键字:设置 AllActive 导体收集 | 更新日期: 2023-09-27 17:51:07
我在停用已经在ContentControl标签中定义的ViewModel时遇到了麻烦。我不想将Visibility设置为false,因为这似乎是一个不合适的解决方案。
这就是它看起来的样子,似乎在AllActive中,我们不需要激活每个项目:
<ContentControl Grid.Column="0" cal:View.Model="{Binding RandomScreenViewModel}"/>
这是导体在"OneActive"模式下的样子。然后我们可以调用ActivateItem和DeactivateItem其中Deactivate会关闭Content:
<ContentControl Grid.Column="0" x:Name="ActiveItem"}"/>
我希望激活项在AllActive期间关闭。这可能吗?在我看来,应该可以从AllActive中删除一个项目。
我对使用导体有点陌生,所以我希望有人能帮助我。: D
ShellView.xaml:
Window x:Class="SimpleConductorOneActive.Views.ShellView"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:cal="http://www.caliburnproject.org"
xmlns:local="clr-namespace:SimpleConductorOneActive.ViewModels"
Title="MainWindow" Height="350" Width="550" Background="CornflowerBlue">
<Grid>
<Grid.RowDefinitions>
<RowDefinition Height="Auto" />
<RowDefinition Height="Auto" />
<RowDefinition Height="*" />
</Grid.RowDefinitions>
<StackPanel Orientation="Horizontal" Grid.Row="0">
<Button Content="New Screen" x:Name="NewScreen" />
<TextBlock Text="Current Screen Count:" VerticalAlignment="Center" Padding="10,5,2,5"/>
<TextBlock Text="{Binding Items.Count}" VerticalAlignment="Center" Padding="0,5,5,5"/>
</StackPanel>
<ContentControl Grid.Row="1" cal:View.Model="{Binding RandomScreenViewModel}" HorizontalAlignment="Center" VerticalAlignment="Center" Height="200" Width="180" Margin="342,0,20,10" Padding="5"/>
<ListBox x:Name='Items' Grid.Row="2">
<ListBox.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Vertical" Width="60" Margin="5">
<TextBlock Text="Screen Id" FontWeight="Bold" />
<TextBlock Text='{Binding DisplayName}'
Margin='5 5 5 5'
Padding="5 5 5 5"
FontSize='12'
TextWrapping="NoWrap"/>
</StackPanel>
</DataTemplate>
</ListBox.ItemTemplate>
<ListBox.ItemsPanel>
<ItemsPanelTemplate>
<StackPanel Orientation='Horizontal' />
</ItemsPanelTemplate>
</ListBox.ItemsPanel>
</ListBox>
</Grid>
</Window>
ShellViewModel.cs:
public class ShellViewModel : Conductor<object>.Collection.AllActive
{
public RandomScreenViewModel RandomScreenViewModel { get; set; }
public int ScreenCount
{
get { return Items.Count; }
}
public ShellViewModel()
{
RandomScreenViewModel = new RandomScreenViewModel();
NewScreen();
}
public void NewScreen()
{
ActivateItem(RandomScreenViewModel);
}
}
RandomScreenView.xaml:
<UserControl x:Class="SimpleConductorOneActive.Views.RandomScreenView"
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 Background="AliceBlue">
<StackPanel Orientation="Vertical">
<Button Content="Close" HorizontalAlignment="Right" Margin="5" x:Name="CloseScreen" />
<TextBlock Text="Name:"/>
<TextBlock x:Name="DisplayName"/>
</StackPanel>
</Grid>
</UserControl>
RandomScreenViewModel.cs:
public class RandomScreenViewModel:Screen
{
public RandomScreenViewModel()
{
Guid id = Guid.NewGuid();
DisplayName = id.ToString();
}
public void CloseScreen()
{
base.TryClose();
}
}
我是WPF, Caliburn Micro的新手,我从未在实际应用中使用过Conductor<T>.Collection.AllActive
,但我已经尝试了一下。当您将其添加到Items
(即屏幕收集)时,所有这些都被激活。
如果你想取消激活它,你可以简单地使用DeactivateItem(T item, bool close)
方法,你正在进行的项目和bool表示你也想关闭它。
这是一段代码。
ShellViewModel.cs
public void Remove()
{
if (Items.Count > 0)
{
DeactivateItem(Items[0], true);
}
}
ShellView。xaml
<ItemsControl x:Name="Items" />
<Button cal:Message.Attach="Remove"
Width="50"
Content="Deactive" />
ShellView将得到更新,当项目中的项目被删除的项目是实现INotifyCollectionChanged
的IObservableCollection<T>
类型我只尝试绑定项目与ItemsControl
,但另一个控件应该能够屏幕收集太(我不知道XD)
在代码隐藏中,您可以将ViewModel的IsEnabled值设置为false。我知道你说过你不想将可见性设置为false,但你可以将可见性设置为collapse。这个解决方案可以在输出中完全隐藏它。
当你想在后面的代码中做的时候,你需要做:
yourObject.Visibility = Visibility.Collapsed;
我发现自己也在尝试做同样的事情并解决了它使用属性= null
ShellViewModel签名
public class ShellViewModel : Conductor<object>.Collection.OneActive
或
public class ShellViewModel : Conductor<object>.Collection.AllActive
属性 private Screen _mainActiveView;
public Screen MainActiveView
{
get { return _mainActiveView; }
set { _mainActiveView = value;
NotifyOfPropertyChange(() => MainActiveView);
}
}
private Screen _footerActiveItem;
public Screen FooterActiveItem
{
get { return _footerActiveItem; }
set { _footerActiveItem = value;
NotifyOfPropertyChange(() => FooterActiveItem);
}
}
ShellView相关信息
<ContentControl x:Name="MainActiveView"/>
<ContentControl x:Name="FooterActiveItem" />
方法来取消项的激活并将其从视图中删除
public void closeFooter(){
DeactivateItemAsync(FooterActiveItem,true)
FooterActiveItem = null
}
我不确定这是否是正确的方法,以及这样做的含义