Hello,
We're using RadChat and would like to switch the send message button image to be an animated spinner when a message is being sent, and prevent any new message being entered and sent during this process.
How would you recommend we achieve this?
We've attempted to achieve this by including the following, with the idea of binding the RotationX and RotationY properties and adjusting the angle. However, this seems to skew the width/height of the send image button rather than just rotating it. Would using an image of the same width/height solve this?
<ContentPage.Resources>
<Style TargetType="tkinput:RadButton">
<Setter Property="RotationX" Value="45" />
<Setter Property="RotationY" Value="45" />
</Style>
</ContentPage.Resources>
Also, what would be the best approach to change the watermark text of the entry box and disable it during this process?
Many thanks
Patrick