Harriet.Models.Chat.ChatWindowPositionModel.ChatWindowPositionModel C# (CSharp) Méthode

ChatWindowPositionModel() public méthode

public ChatWindowPositionModel ( IMainWindow mainWindow, IChatWindowLayoutSetting layout, IChatWindowRelocateRequestable relocateRequestor ) : Harriet.Models.Core
mainWindow IMainWindow
layout IChatWindowLayoutSetting
relocateRequestor IChatWindowRelocateRequestable
Résultat Harriet.Models.Core
        public ChatWindowPositionModel(
            IMainWindow mainWindow,
            IChatWindowLayoutSetting layout,
            IChatWindowRelocateRequestable relocateRequestor)
        {
            _mainWindow = mainWindow;
            Layout = layout;

            ResetSize();

            Left = 100;
            Top = 100;

            relocateRequestor.RelocateRequested += OnRelocateRequested;
        }