mirror of
https://github.com/chylex/TweetDuck.git
synced 2025-08-21 03:54:07 +02:00
Configuration
Core
Controls
ControlExtensions.cs
FlatButton.cs
FlatProgressBar.Designer.cs
FlatProgressBar.cs
TabButton.Designer.cs
TabButton.cs
TabPanel.Designer.cs
TabPanel.cs
Handling
Other
Utils
FormBrowser.Designer.cs
FormBrowser.cs
FormBrowser.resx
FormNotification.Designer.cs
FormNotification.cs
TrayIcon.Designer.cs
TrayIcon.cs
Libraries
Plugins
Properties
Resources
Updates
bld
.gitignore
LICENSE.md
Program.cs
README.md
Reporter.cs
TweetDck.csproj
TweetDck.sln
_postbuild.bat
56 lines
1.8 KiB
C#
56 lines
1.8 KiB
C#
using System;
|
|
using System.Drawing;
|
|
using System.Windows.Forms;
|
|
using TweetDck.Core.Utils;
|
|
|
|
namespace TweetDck.Core.Controls{
|
|
static class ControlExtensions{
|
|
public static void InvokeSafe(this Control control, Action func){
|
|
if (control.InvokeRequired){
|
|
control.Invoke(func);
|
|
}
|
|
else{
|
|
func();
|
|
}
|
|
}
|
|
|
|
public static void MoveToCenter(this Form targetForm, Form parentForm){
|
|
targetForm.Location = new Point(parentForm.Location.X+parentForm.Width/2-targetForm.Width/2, parentForm.Location.Y+parentForm.Height/2-targetForm.Height/2);
|
|
}
|
|
|
|
public static void SetValueInstant(this ProgressBar bar, int value){
|
|
if (value == bar.Maximum){
|
|
bar.Value = value;
|
|
bar.Value = value-1;
|
|
bar.Value = value;
|
|
}
|
|
else{
|
|
bar.Value = value+1;
|
|
bar.Value = value;
|
|
}
|
|
}
|
|
|
|
public static void SetValueSafe(this TrackBar trackBar, int value){
|
|
if (value >= trackBar.Minimum && value <= trackBar.Maximum){
|
|
trackBar.Value = value;
|
|
}
|
|
}
|
|
|
|
public static void SetElevated(this Button button){
|
|
button.Text = " "+button.Text;
|
|
button.FlatStyle = FlatStyle.System;
|
|
NativeMethods.SendMessage(button.Handle, NativeMethods.BCM_SETSHIELD, 0, new IntPtr(1));
|
|
}
|
|
|
|
public static void EnableMultilineShortcuts(this TextBox textBox){
|
|
textBox.KeyDown += (sender, args) => {
|
|
if (args.Control && args.KeyCode == Keys.A){
|
|
((TextBox)sender).SelectAll();
|
|
args.SuppressKeyPress = true;
|
|
args.Handled = true;
|
|
}
|
|
};
|
|
}
|
|
}
|
|
}
|