var listview = (SfListView)sfChat.GetType().GetRuntimeProperties().FirstOrDefault(x => x.Name.Equals("ChatListView")).GetValue(sfChat);
listview.FooterSize = 0;
FooterView footerView = (FooterView)(this.sfChat.Content as Grid).Children[1];
ContentView contentView = (ContentView)(footerView as Grid).Children[1];
var border = (contentView.Content as SfBorder);
((border.Content as Grid).Children[0] as Editor).BackgroundColor = Color.Red;
|