我正在使用Modern UI作为我的WPF项目。
我有两个问题:
我有mui:ModernTab Layout="List"
这意味着ListCollection
,我希望绑定其中一个Links
(我想绑定mouseleftbuttonup
),可能吗? (我需要它,因为我对所有链接都有相同的Source
xaml。)
如果我能做到这一点,那么无论如何都要检测点击DisplayName
的{{1}}是什么?
代码:
Link
视图模型:
<UserControl x:Class="MyApp.Pages.Results.SecondPage"
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"
xmlns:mui="http://firstfloorsoftware.com/ModernUI"
xmlns:local="clr-namespace:MyApp.Pages.Results"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="300">
<Grid>
<mui:ModernTab Layout="List" Links="{Binding Path=SomeLinks}">
</mui:ModernTab>
</Grid>
</UserControl>