我正在尝试使用按钮创建TabItem标头,以便用户关闭标签页。对象的直观表示和数据绑定就可以了。
我已经尝试过DataContext,但到目前为止我还没有找到可行的解决方案。
我的XAML:
<TabControl
Grid.Column="3"
Grid.Row="2"
x:Name="TabControlTargets"
ItemsSource="{Binding Path=ViewModelTarget.IpcConfig.DatabasesList, UpdateSourceTrigger=PropertyChanged}"
SelectedItem="{Binding Path=ViewModelTarget.SelectedTab, UpdateSourceTrigger=PropertyChanged}">
<TabControl.ItemTemplate>
<DataTemplate>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Left">
<TextBlock FontFamily="Calibri" FontSize="15" FontWeight="Bold" Foreground="{Binding FontColor}" Text="{Binding Name, UpdateSourceTrigger=PropertyChanged}" HorizontalAlignment="Center" Margin="0,0,20,0"/>
<Button HorizontalAlignment="Left" DataContext="{Binding RelativeSource={RelativeSource AncestorType=Window}, Path=DataContext}" Command="{Binding Path = ViewModelTarget.buttonRemoveDatabaseCommand}"
CommandParameter="**?**"
>
<Button.Content>
<Image Height="15" Width="15" Source="pack://application:,,,/Images/cancel.png" />
</Button.Content>
</Button>
</StackPanel>
</DataTemplate>
我无法弄清楚如何设置我的按钮的CommandParameter,以便它引用正确的对象。
这是我的RelayCommand:
public ICommand buttonRemoveDatabaseCommand
{
get
{
if (_buttonRemoveDatabaseCommand == null)
{
_buttonRemoveDatabaseCommand = new RelayCommand(
param => RemoveDatabase(param)
);
}
return _buttonRemoveDatabaseCommand;
}
}
这是我的RemoveDatabase函数:
public void RemoveDatabase(object dB)
{
this.IpcConfig.RemoveDataBase((PCDatabase)dB);
}
我更倾向于采用一种坚持我的“无代码背后”方法的解决方案。
答案 0 :(得分:1)
正如评论中所指出的,您可以使用CommandParameter="{Binding}"
将TabItem
上下文传递给命令。
更好的方法是将命令移动到TabItem
的ViewModel。
这是使用Prism和Prism EventAggregator
的示例实现。您当然可以与其他所有MVVM框架一起实现它,甚至可以自己实现它,但这取决于您。
这将是您的TabControl
ViewModel,其中包含所有数据库的列表或其表示的任何内容。
public class DatabasesViewModel : BindableBase
{
private readonly IEventAggregator eventAggregator;
public ObservableCollection<DatabaseViewModel> Databases { get; private set; }
public CompositeCommand CloseAllCommand { get; }
public DatabasesViewModel(IEventAggregator eventAggregator)
{
if (eventAggregator == null)
throw new ArgumentNullException(nameof(eventAggregator));
this.eventAggregator = eventAggregator;
// Composite Command to close all tabs at once
CloseAllCommand = new CompositeCommand();
Databases = new ObservableCollection<DatabaseViewModel>();
// Add a sample object to the collection
AddDatabase(new PcDatabase());
// Register to the CloseDatabaseEvent, which will be fired from the child ViewModels on close
this.eventAggregator
.GetEvent<CloseDatabaseEvent>()
.Subscribe(OnDatabaseClose);
}
private void AddDatabase(PcDatabase db)
{
// In reallity use the factory pattern to resolve the depencency of the ViewModel and assing the
// database to it
var viewModel = new DatabaseViewModel(eventAggregator)
{
Database = db
};
// Register to the close command of all TabItem ViewModels, so we can close then all with a single command
CloseAllCommand.RegisterCommand(viewModel.CloseCommand);
Databases.Add(viewModel);
}
// Called when the event is received
private void OnDatabaseClose(DatabaseViewModel databaseViewModel)
{
Databases.Remove(databaseViewModel);
}
}
每个标签会在其上下文中获得一个DatabaseViewModel
。这是定义close命令的地方。
public class DatabaseViewModel : BindableBase
{
private readonly IEventAggregator eventAggregator;
public DatabaseViewModel(IEventAggregator eventAggregator)
{
if (eventAggregator == null)
throw new ArgumentNullException(nameof(eventAggregator));
this.eventAggregator = eventAggregator;
CloseCommand = new DelegateCommand(Close);
}
public PcDatabase Database { get; set; }
public ICommand CloseCommand { get; }
private void Close()
{
// Send a refence to ourself
eventAggregator
.GetEvent<CloseDatabaseEvent>()
.Publish(this);
}
}
当您单击TabItem
上的关闭按钮时,将调用CloseCommand
并发送一个事件,该事件将通知所有订阅者,此选项卡应该关闭。在上面的示例中,DatabasesViewModel
会侦听此事件并将接收该事件,然后可以将其从ObservableCollection<DatabaseViewModel>
集合中删除。
为了使这种方式的优势更加明显,我添加了一个CloseAllCommand
,CompositeCommand
注册到每个DatabaseViewModel
s CloseCommand
,因为它已添加到Databases
可观察集合,在调用时将调用所有已注册的命令。
CloseDatabaseEvent
非常简单,只是一个标记,用于确定收到的有效负载类型,在这种情况下为DatabaseViewModel
。
public class CloseDatabaseEvent : PubSubEvent<DatabaseViewModel> { }
在实际应用程序中,您希望避免使用ViewModel(此处为DatabaseViewModel
)作为有效负载,因为这会导致紧密耦合,即事件聚合器模式应避免。
在这种情况下,它可以被认为是可接受的,因为DatabasesViewModel
需要知道DatabaseViewModel
s,但如果可能的话,最好使用ID(Guid,int,string)。
这样做的好处是,您还可以通过其他方式(即菜单,功能区或上下文菜单)关闭选项卡,您可能无法引用DatabasesViewModel
数据上下文。