您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
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. }