Hi there
Just wanted to let you know that in SfChat control, SendMessageCommand is not invoked anymore after upgrading from v17.4.0.39 to v17.4.0.41.
<syncFusionSfChat:SfChat x:Name="sfChat"
MessageShape="RoundedRectangle"
SendMessageCommand="{Binding SendMessageCommand}"
Messages="{Binding Messages}"
CurrentUser="{Binding CurrentUser}"
TimestampFormat="hh:mm tt"
ShowTimeBreak="True">
private ICommand _sendMessageCommand;
public ICommand SendMessageCommand
{
get => _sendMessageCommand;
set
{
_sendMessageCommand = value;
RaisePropertyChanged(() => SendMessageCommand);
}
}
SendMessageCommand = new Command(SendMessage);
private void SendMessage(object args)
{
(args as SendMessageEventArgs).Message.ShowAvatar = true;
}
The above code works perfectly fine with v17.4.0.39 but is broken afterwards.
Thanks