第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

無法為數(shù)據(jù)模板工具提示設(shè)置父數(shù)據(jù)上下文

無法為數(shù)據(jù)模板工具提示設(shè)置父數(shù)據(jù)上下文

C#
料青山看我應(yīng)如是 2022-10-23 13:42:54
無法為數(shù)據(jù)模板工具提示設(shè)置父數(shù)據(jù)上下文。下面是 xaml 代碼。只需一次組合框并在組合框數(shù)據(jù)模板中添加文本框。Xaml<UserControl x:Class="WpfApplication1.UserControl1"             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"              Name="UC"             d:DesignHeight="50" d:DesignWidth="200">    <Grid>        <ComboBox Width="200" Height="50" ItemsSource="{Binding Coll}">            <ComboBox.ItemTemplate>                <DataTemplate>                    <TextBlock Text="{Binding Length}">                        <TextBlock.ToolTip>                            <ToolTip Content="{Binding Path=DataContext.ToolTipValue,                                                        RelativeSource={RelativeSource FindAncestor,                                                        AncestorType={x:Type UserControl}}}"/>                        </TextBlock.ToolTip>                    </TextBlock>                </DataTemplate>            </ComboBox.ItemTemplate>        </ComboBox>    </Grid></UserControl>視圖模型    private List<string> _coll;    public List<string> Coll    {        get { return _coll; }        set { _coll = value; OnPropertyChanged(); }    }    private string _ToolTipValue;    public string ToolTipValue    {        get { return _ToolTipValue; }        set { _ToolTipValue = value; OnPropertyChanged(); }    }    public ViewModel()    {        _coll = new List<string>(){ "1", "2", "3"};        _ToolTipValue = "Demo";    }你能幫我為什么沒有設(shè)置 DataContext 嗎?是綁定問題嗎?
查看完整描述

1 回答

?
郎朗坤

TA貢獻(xiàn)1921條經(jīng)驗(yàn) 獲得超9個(gè)贊

如果你不需要任何特殊的東西盡量不要嵌套工具提示:


<TextBlock ToolTip="{Binding DataContext.ToolTipValue, 

                     RelativeSource={RelativeSource Mode=FindAncestor, AncestorType=UserControl}}"

           Text="{Binding Length}"/>


查看完整回答
反對(duì) 回復(fù) 2022-10-23
  • 1 回答
  • 0 關(guān)注
  • 101 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)