0

我需要使用 c# 语言将标签添加到 asp.net 中的按钮。每当鼠标指向按钮时,我都需要可以查看标签。我正在设计一个 wpf 应用程序。任何帮助表示赞赏。

4

2 回答 2

2

如果这是 WPF,我认为您不需要标签,因为标签在指向控件时不可见,但工具提示是。

<Button Content="Submit" Tooltip="Click this to submit" 
    Command="{Binding SubmitCommand}"/>
于 2012-05-16T08:26:17.823 回答
1

我认为您在谈论工具提示:

<Button Content="Submit">
<Button.ToolTip>
    <ToolTip>
        <StackPanel>
            <TextBlock FontWeight="Bold">Submit Request</TextBlock>
            <TextBlock>Submits the request to the server.</TextBlock>
        </StackPanel>
    </ToolTip>
</Button.ToolTip>

于 2012-05-16T08:24:21.887 回答