-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
1. Drag to add (with Control key) I say that you have to press ctrl b…
…ecause 1) performance and 2) it was really annoying without it if I don't want to add window to set but it is automatically added. 2. Drag to remove: Just drag the window out will now remove from set unlike before will still try to bring it back. If you move the sets window, the window will follow. If you move the window itself, it auto ejects out of United Sets. (This feature is planned to use for easier split window implementation) 3. Drag and drop tabs to other United Sets window
- Loading branch information
Showing
9 changed files
with
406 additions
and
226 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,12 @@ | ||
using Microsoft.UI.Xaml.Controls; | ||
using Microsoft.UI.Xaml.Media; | ||
using Microsoft.UI.Xaml.Media.Imaging; | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Threading.Tasks; | ||
using Microsoft.UI.Xaml.Media.Imaging; | ||
using UnitedSets.Classes; | ||
|
||
namespace UnitedSets.Interfaces | ||
namespace UnitedSets.Interfaces; | ||
|
||
public interface ITab | ||
{ | ||
interface ITab | ||
{ | ||
BitmapImage? Icon { get; } | ||
string Title { get; } | ||
HwndHost HwndHost { get; } | ||
bool Selected { get; set; } | ||
} | ||
BitmapImage? Icon { get; } | ||
string Title { get; } | ||
HwndHost HwndHost { get; } | ||
bool Selected { get; set; } | ||
} |
Oops, something went wrong.