FrozenAssassine / EasePass

A simple C# password manager
https://easepass.frozenassassine.de
MIT License
12 stars 0 forks source link

QR-Code scanning for 2FA #14

Closed finn-freitag closed 1 year ago

finn-freitag commented 1 year ago

Just the minimize, maximize and close buttons needs to be removed from ScreenScannerWindow for a better look. Hope anyone can help.

Edit: The 'width' and 'height' variables of ScreenScannerWindow needs to be initialized with the screen width and height.

FrozenAssassine commented 1 year ago

I will try to remove them, but It seems only kind of possible.

FrozenAssassine commented 1 year ago

Actually, it is very simple to hide the caption buttons, here is the code. I will implement it into the branch:

var presenter = this.AppWindow.Presenter as OverlappedPresenter;
presenter.IsMaximizable = false;
presenter.IsMinimizable = false;