WPF将mouseleftbuttonup绑定到viewModel并获取链接点击的名称

时间:2018-03-13 12:39:05

标签: c# wpf xaml bind modern-ui

我正在使用Modern UI作为我的WPF项目。

我有两个问题:

  1. 我有mui:ModernTab Layout="List"这意味着ListCollection,我希望绑定其中一个Links(我想绑定mouseleftbuttonup),可能吗? (我需要它,因为我对所有链接都有相同的Source xaml。)

  2. 如果我能做到这一点,那么无论如何都要检测点击DisplayName的{​​{1}}是什么?

  3. 代码:

    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>
    

0 个答案:

没有答案