<ResourceDictionary
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:src="clr-namespace:Autodesk.Windows;assembly=AdWindows">
<src:RibbonToolTip x:Key="MYEH_CMD_0003">
<src:RibbonToolTip.ExpandedContent>
<StackPanel>
<TextBlock Background="AntiqueWhite" TextAlignment="Center">
Configures the settings for the current drawing.
</TextBlock>
</StackPanel>
</src:RibbonToolTip.ExpandedContent>
</src:RibbonToolTip>
</ResourceDictionary>
将文件另存为 ASCII 文本文件,文件扩展名为 .xaml。
更新为基于 AutoCAD 2009 的产品创建的扩展工具提示,以用于最新版本。
在文字编辑器(例如记事本)中打开 XAML 文件。
下面是为与基于 AutoCAD 2009 的产品结合使用而创建的扩展工具提示的样例。
<src:ProgressivePanel x:Key="MYEH_CMD_0003">
<StackPanel>
<TextBlock Background="AntiqueWhite" TextAlignment="Center">
Configures the settings for the current drawing.
</TextBlock>
</StackPanel>
</src:ProgressivePanel>
更改上一步中显示的粗体和斜体文字,匹配以下内容以使用最新版本的扩展工具提示:
<src:RibbonToolTip x:Key="MYEH_CMD_0003"><src:RibbonToolTip.ExpandedContent>
<StackPanel>
<TextBlock Background="AntiqueWhite" TextAlignment="Center">
Configures the settings for the current drawing.
</TextBlock>
</StackPanel>
</src:RibbonToolTip.ExpandedContent></src:RibbonToolTip>