-
-
Notifications
You must be signed in to change notification settings - Fork 27
MainViewModel
The MainViewModel manages the most basic parts of the Shell and its Views.
The MainViewModel is a partial class split between 4 different files in src/Quarrel.ViewModels/MainViewModel:
-
GenericMainViewModelcontains the Services used between all parts of theMainViewModeland uncategorized Commands, Methods or Properties, like theOpenSettingscommand. -
GuildsMainViewModelcontains the Commands, Methods or Properties used for theGuildListControl; Such as theNavigateGuildcommand or theBindableGuildslist property. -
ChannelsMainViewModelcontains the Commands, Methods or Properties used for theChannelListControl; Such as theNavigateChannelcommand or theCurrentChannelproperty. -
MessagesMainViewModelcontains the Commands, Methods or Properties used for theMessageListControl; Such as theDeleteMessagecommand or theBindableMessageslist property. -
MembersMainViewModelcontains the Commands, Methods or Properties used for theMessageListControl; Such as theUpdateGuildSubscriptionscommand or theCurrentBindableMemberslist property.