mirror of
https://github.com/ckaczor/FeedCenter.git
synced 2026-01-13 17:22:48 -05:00
More UI updates
This commit is contained in:
@@ -3,31 +3,30 @@ using FeedCenter.Properties;
|
||||
using System.Windows;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace FeedCenter
|
||||
namespace FeedCenter;
|
||||
|
||||
public partial class MainWindow
|
||||
{
|
||||
public partial class MainWindow
|
||||
private void HandleHeaderLabelMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
private void HandleHeaderLabelMouseLeftButtonDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
// Ignore if the window is locked
|
||||
if (Settings.Default.WindowLocked)
|
||||
return;
|
||||
// Ignore if the window is locked
|
||||
if (Settings.Default.WindowLocked)
|
||||
return;
|
||||
|
||||
// Start dragging
|
||||
DragMove();
|
||||
}
|
||||
// Start dragging
|
||||
DragMove();
|
||||
}
|
||||
|
||||
private void HandleCloseButtonClick(object sender, RoutedEventArgs e)
|
||||
{
|
||||
// Close the window
|
||||
Close();
|
||||
}
|
||||
private void HandleCloseButtonClick(object sender, RoutedEventArgs e)
|
||||
{
|
||||
// Close the window
|
||||
Close();
|
||||
}
|
||||
|
||||
private void HandleFeedLabelMouseDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
// Open the link for the current feed on a left double click
|
||||
if (e.ClickCount == 2 && e.ChangedButton == MouseButton.Left)
|
||||
InstalledBrowser.OpenLink(Settings.Default.Browser, _currentFeed.Link);
|
||||
}
|
||||
private void HandleFeedLabelMouseDown(object sender, MouseButtonEventArgs e)
|
||||
{
|
||||
// Open the link for the current feed on a left double click
|
||||
if (e.ClickCount == 2 && e.ChangedButton == MouseButton.Left)
|
||||
InstalledBrowser.OpenLink(Settings.Default.Browser, _currentFeed.Link);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user