UWP InkToolbar工具提示

时间:2017-08-07 17:34:03

标签: uwp tooltip uwp-xaml inkcanvas

我正在使用InkToolbarCustomToolButton设计InkToolbar,如下所示

 df.write.option("quoteMode", "None").csv("/path/to/target")

enter image description here

如图所示,按钮的工具提示是固定的。

enter image description here

现在我想使用Resources.resw以不同的语言显示。

例如,您可以使用Resources.resw设置按钮的内容。

我怎么能以同样的方式做?

顺便说一下,我不想使用PointerEntered事件。

1 个答案:

答案 0 :(得分:1)

根据您的要求,您可以设置Content的{​​{1}},就像您提到的按钮一样。

ToolTip

然后在不同的资源文件中为<InkToolbarCustomToolButton x:Name="toggleButtonNewInk" Click="toggleButtonNewInk_Click" Margin="20"> <SymbolIcon Symbol="Page2" > <ToolTipService.ToolTip> <ToolTip Content="" x:Uid="ToolTip"/> </ToolTipService.ToolTip> </SymbolIcon> </InkToolbarCustomToolButton> 设置不同的值,如下所示:

<强>的en-US

ToolTip

<强> ZH-CN

<data name="ToolTip.Content" xml:space="preserve">
  <value>NewInk</value>
  <comment>Prompt the user this is a new ink button</comment>
</data>

有关详情,请参阅Put UI strings into resources

enter image description here