You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 lines
237B

  1. namespace MaUI;
  2. public partial class ChatRoomPage : ContentPage
  3. {
  4. ChatRoom_VM _VM;
  5. public ChatRoomPage()
  6. {
  7. InitializeComponent();
  8. _VM = new ChatRoom_VM();
  9. BindingContext = _VM;
  10. }
  11. }