I can't figure out why my Label isn't triggering the converter when inside of span, but does when it isn't? What am I missing here?

huangapple go评论171阅读模式
英文:

I can't figure out why my Label isn't triggering the converter when inside of span, but does when it isn't? What am I missing here?

问题

我有两个相同数据的标签示例。一个可以工作,但不符合我的要求(它根据社区名称而不是社区名称和用户名的不同颜色对所有文本进行着色),另一个可以工作,但不触发转换器(所以文本显示正常,但不通过转换器进行着色)。我认为第二个不触发转换器的标签是我想要的。

工作的标签,但不符合要求

  1. <Label
  2. x:Name="communityAndUserLabel"
  3. Grid.Row="2"
  4. Grid.Column="1"
  5. FontAttributes="None"
  6. VerticalOptions="End">
  7. <Label.Text>
  8. <MultiBinding StringFormat="{}{0} • {1}" Mode="TwoWay">
  9. <Binding Path="CommunityName" />
  10. <Binding Path="Username" />
  11. </MultiBinding>
  12. </Label.Text>
  13. <Label.TextColor>
  14. <MultiBinding Converter="{StaticResource nameColorMulti}" ConverterParameter="community">
  15. <Binding Path="CommunityName" />
  16. <Binding Path="Username" />
  17. </MultiBinding>
  18. </Label.TextColor>
  19. </Label>

不触发转换器的标签,但仍显示文本

  1. <Label
  2. x:Name="communityAndUserLabel"
  3. Grid.Row="2"
  4. Grid.Column="1"
  5. FontAttributes="None"
  6. VerticalOptions="End">
  7. <Label.FormattedText>
  8. <FormattedString>
  9. <Span Text="{Binding CommunityName, Mode=TwoWay}" TextColor="{Binding CommunityName, Converter={StaticResource nameColorMulti}, ConverterParameter=community}" />
  10. <Span Text=" • " TextColor="Gray" />
  11. <Span Text="{Binding Username, Mode=TwoWay}" TextColor="{Binding Username, Converter={StaticResource nameColorMulti}, ConverterParameter=username}" />
  12. </FormattedString>
  13. </Label.FormattedText>
  14. </Label>

你有没有想到为什么第二个标签不触发转换器的原因?

英文:

I have two Label examples for the same data. One works - but doesn't work like I want it to (it colorized all of the text based on the community name rather than both the community name and the username being different colors), the other works - but doesn't trigger the converter to fire (so the text displays as expected, but doesn't run through the converter for colorization). I think the second one that doesn't trigger the convertor is what I'm after.

Working Label, but doesn't do what I want

  1. &lt;Label
  2. x:Name=&quot;communityAndUserLabel&quot;
  3. Grid.Row=&quot;2&quot;
  4. Grid.Column=&quot;1&quot;
  5. FontAttributes=&quot;None&quot;
  6. VerticalOptions=&quot;End&quot;&gt;
  7. &lt;Label.Text&gt;
  8. &lt;MultiBinding StringFormat=&quot;{}{0} {1}&quot; Mode=&quot;TwoWay&quot;&gt;
  9. &lt;Binding Path=&quot;CommunityName&quot; /&gt;
  10. &lt;Binding Path=&quot;Username&quot; /&gt;
  11. &lt;/MultiBinding&gt;
  12. &lt;/Label.Text&gt;
  13. &lt;Label.TextColor&gt;
  14. &lt;MultiBinding Converter=&quot;{StaticResource nameColorMulti}&quot; ConverterParameter=&quot;community&quot;&gt;
  15. &lt;Binding Path=&quot;CommunityName&quot; /&gt;
  16. &lt;Binding Path=&quot;Username&quot; /&gt;
  17. &lt;/MultiBinding&gt;
  18. &lt;/Label.TextColor&gt;
  19. &lt;/Label&gt;

Label that won't trigger the converter, but still shows the text

  1. &lt;Label
  2. x:Name=&quot;communityAndUserLabel&quot;
  3. Grid.Row=&quot;2&quot;
  4. Grid.Column=&quot;1&quot;
  5. FontAttributes=&quot;None&quot;
  6. VerticalOptions=&quot;End&quot;&gt;
  7. &lt;Label.FormattedText&gt;
  8. &lt;FormattedString&gt;
  9. &lt;Span Text=&quot;{Binding CommunityName, Mode=TwoWay}&quot; TextColor=&quot;{Binding CommunityName, Converter={StaticResource nameColorMulti}, ConverterParameter=community}&quot; /&gt;
  10. &lt;Span Text=&quot; &quot; TextColor=&quot;Gray&quot; /&gt;
  11. &lt;Span Text=&quot;{Binding Username, Mode=TwoWay}&quot; TextColor=&quot;{Binding Username, Converter={StaticResource nameColorMulti}, ConverterParameter=username}&quot; /&gt;
  12. &lt;/FormattedString&gt;
  13. &lt;/Label.FormattedText&gt;
  14. &lt;/Label&gt;

Any idea on what I'm overlooking here on why the second one doesn't trigger the converter?

答案1

得分: 1

今天早上我突然意识到,由于我在xaml中将文本分开,我不再需要使用IMultiValueConverter了,所以我创建了两个单独的IValueConverter来完成这个任务:

  1. &lt;Label
  2. x:Name=&quot;communityAndUserLabel&quot;
  3. Grid.Row=&quot;2&quot;
  4. Grid.Column=&quot;1&quot;
  5. FontAttributes=&quot;None&quot;
  6. VerticalOptions=&quot;End&quot;&gt;
  7. &lt;Label.FormattedText&gt;
  8. &lt;FormattedString&gt;
  9. &lt;!-- 使用带有Converter属性的绑定标记扩展 --&gt;
  10. &lt;Span Text=&quot;{Binding CommunityName}&quot; TextColor=&quot;{Binding CommunityName, Converter={StaticResource communityNameColor}}&quot; /&gt;
  11. &lt;Span Text=&quot; &quot; TextColor=&quot;Grey&quot; /&gt;
  12. &lt;Span Text=&quot;{Binding Username}&quot; TextColor=&quot;{Binding Username, Converter={StaticResource usernameColor}}&quot; /&gt;
  13. &lt;/FormattedString&gt;
  14. &lt;/Label.FormattedText&gt;
  15. &lt;/Label&gt;
英文:

It dawned on me this morning that since I had separated the text out in the xaml I no longer needed to use a IMultiValueConverter - so instead I created two separate IValueConverters to get this done:

  1. &lt;Label
  2. x:Name=&quot;communityAndUserLabel&quot;
  3. Grid.Row=&quot;2&quot;
  4. Grid.Column=&quot;1&quot;
  5. FontAttributes=&quot;None&quot;
  6. VerticalOptions=&quot;End&quot;&gt;
  7. &lt;Label.FormattedText&gt;
  8. &lt;FormattedString&gt;
  9. &lt;!-- Use Binding markup extensions with Converter attributes --&gt;
  10. &lt;Span Text=&quot;{Binding CommunityName}&quot; TextColor=&quot;{Binding CommunityName, Converter={StaticResource communityNameColor}}&quot; /&gt;
  11. &lt;Span Text=&quot; &quot; TextColor=&quot;Grey&quot; /&gt;
  12. &lt;Span Text=&quot;{Binding Username}&quot; TextColor=&quot;{Binding Username, Converter={StaticResource usernameColor}}&quot; /&gt;
  13. &lt;/FormattedString&gt;
  14. &lt;/Label.FormattedText&gt;
  15. &lt;/Label&gt;

huangapple
  • 本文由 发表于 2023年8月9日 04:08:28
  • 转载请务必保留本文链接:https://go.coder-hub.com/76862899.html
匿名

发表评论

匿名网友

:?: :razz: :sad: :evil: :!: :smile: :oops: :grin: :eek: :shock: :???: :cool: :lol: :mad: :twisted: :roll: :wink: :idea: :arrow: :neutral: :cry: :mrgreen:

确定