Skip to content

Includes MessageBox with a more modern interface and rich text support, InputBox, can auto-closing Prompt Window. 包括支持富文本的更现代化界面的消息框、输入框、可自动关闭的提示窗。

License

Notifications You must be signed in to change notification settings

tp1415926535/MessageWindowWPF

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

18 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

MessageWindowWPF

Includes MessageBox with a more modern interface and rich text support, InputBox, can auto-closing Prompt Window.
包括支持富文本的更现代化界面的消息框、输入框、可自动关闭的提示窗。

MessageBox:
MessageBox

InputBox:
InputBox

Prompt:
Prompt

release nuget license C#

Description 说明

English Description

Download package from Nuget, or using the release Dll.

MessageBox

MessageBox

Except for the absence of the MessageBoxOptions parameter, all other features are seamlessly integrated with the original version.

using MessageBox = MessageWindowWPF.MessageBox; //Just add the namespace

  MessageBox.Show("Message!");
  MessageBox.Show("Message2!", "Tip", MessageBoxButton.OK, MessageBoxImage.Information);

MessageBox-richtext
If you want to display rich text, you can also just pass in the parameters:

using MessageBox = MessageWindowWPF.MessageBox; 

  List<Inline> inlines = new List<Inline>();
  inlines.Add(new Run("normal text. "));
  inlines.Add(new Run("red text.") { Foreground = Brushes.Red });
  MessageBox.Show(inlines, "Tip", MessageBoxButton.OK, MessageBoxImage.Information);

Some configurations can also be customized:

using MessageWindowWPF;
using MessageBox = MessageWindowWPF.MessageBox;

  MessageSetting.settings.NoSystemHeader = MessageSetting.settings.WithCornerRadius = true; //Without system title bar, and change to rounded corners
  MessageSetting.settings.BackGroundColor = Colors.Black;
  MessageBox.Show("Message!", "Tip", MessageBoxButton.OK, MessageBoxImage.Information);

InputBox

InputBox

Input box similar to VB's component.

using MessageWindowWPF;

  InputBox inputBox = new InputBox();
  if (inputBox.ShowDialog("Write Something:", "Title") == true)
    Console.WriteLine(inputBox.value);

Function: inputBox.ShowDialog(string message = null, string title = null, string defaultValue = null), return bool?.

Some configurations can also be customized:

using MessageWindowWPF;

  MessageSetting.settings.NoSystemHeader = MessageSetting.settings.WithCornerRadius = true;
  MessageSetting.settings.BackGroundColor = Colors.Black;
  InputBox inputBox = new InputBox();
  if (inputBox.ShowDialog("Write Something:", "Title") == true)
    Console.WriteLine(inputBox.value);

Prompt

Prompt

Fade-in and fade-out cues, support countdown and double click to close.

using MessageWindowWPF;

  Prompt.Show("Show text");

Function: Prompt.Show(string content, double liveSeconds = 3, Window owner = null, Point? point = null, Color? backColor = null), return Window.
When the parameter value of "liveSeconds" <= 0, the window will be displayed until it is closed by double-clicking.

Prompt-richtext
If you want to display rich text, you can also just pass in the parameters:

using MessageWindowWPF;

  List<Inline> inlines = new List<Inline>();
  inlines.Add(new Run("normal text. "));
  inlines.Add(new Run("red text.") { Foreground = Brushes.Red });
  Prompt.Show(inlines);

Custom configurations only have an effect on the color, but the color parameter of the function has a higher priority:

using MessageWindowWPF;

  MessageSetting.settings.BackGroundColor = Colors.Black;
  Prompt.Show("Show text");

Additional information

  • Because there are only four buttons, the current text only comes with Chinese and English. The default is displayed in the current language. Alternatively, you can set it manually by changing the value of "MessageSetting.settings.UIculture".

Version

  • v1.0.0 2022/12/07 Basic features.

中文说明

从Nuget下载包,或者引用release的Dll。

消息窗(MessageBox)

MessageBox
除了没有 MessageBoxOptions 参数之外,其他功能都与原版无缝衔接。

using MessageBox = MessageWindowWPF.MessageBox; //添加这行即可

  MessageBox.Show("消息!");
  MessageBox.Show("消息2!", "提示", MessageBoxButton.OK, MessageBoxImage.Information);

MessageBox-richtext
如果想要显示富文本,也只需传入参数即可:

using MessageBox = MessageWindowWPF.MessageBox; 

  List<Inline> inlines = new List<Inline>();
  inlines.Add(new Run("普通文本。 "));
  inlines.Add(new Run("红色文本。") { Foreground = Brushes.Red });
  MessageBox.Show(inlines, "提示", MessageBoxButton.OK, MessageBoxImage.Information);

还可以自定义一些配置:

using MessageWindowWPF;
using MessageBox = MessageWindowWPF.MessageBox;

  MessageSetting.settings.NoSystemHeader = MessageSetting.settings.WithCornerRadius = true;//不使用系统标题栏,以及变为圆角
  MessageSetting.settings.BackGroundColor = Colors.Black;
  MessageBox.Show("消息!", "提示", MessageBoxButton.OK, MessageBoxImage.Information);

输入框(InputBox)

InputBox
类似于VB组件的输入框

using MessageWindowWPF;

  InputBox inputBox = new InputBox();
  if (inputBox.ShowDialog("输入提示:", "标题") == true)
    Console.WriteLine(inputBox.value);

函数: inputBox.ShowDialog(string message = null, string title = null, string defaultValue = null), 返回 bool?。

还可以自定义一些配置:

using MessageWindowWPF;

  MessageSetting.settings.NoSystemHeader = MessageSetting.settings.WithCornerRadius = true;
  MessageSetting.settings.BackGroundColor = Colors.Black;
  InputBox inputBox = new InputBox();
  if (inputBox.ShowDialog("输入提示:", "标题") == true)
    Console.WriteLine(inputBox.value);

提示(Prompt)

Prompt
淡入和淡出的提示,支持倒计时和双击关闭。

using MessageWindowWPF;

  Prompt.Show("提示文字");

函数: Prompt.Show(string content, double liveSeconds = 3, Window owner = null, Point? point = null, Color? backColor = null), 返回提示窗体。
当"liveSeconds" 的参数值<=0时,窗口将会一直显示直到双击关闭它。

Prompt-richtext
如果想要显示富文本,也只需传入参数即可:

using MessageWindowWPF;

  List<Inline> inlines = new List<Inline>();
  inlines.Add(new Run("普通文本。 "));
  inlines.Add(new Run("红色文本。") { Foreground = Brushes.Red });
  Prompt.Show(inlines);

自定义配置只有颜色有作用,但是调用函数的颜色参数优先级更高:

using MessageWindowWPF;

  MessageSetting.settings.BackGroundColor = Colors.Black;
  Prompt.Show("提示文字");

其他说明

  • 因为只有四个按钮,所以目前的文字只带有中文和英文。 默认按当前语言显示,另外还可以通过改变 MessageSetting.settings.UIculture 的值来手动设置它。

Version

  • v1.0.0 2022/12/07 基本功能.

About

Includes MessageBox with a more modern interface and rich text support, InputBox, can auto-closing Prompt Window. 包括支持富文本的更现代化界面的消息框、输入框、可自动关闭的提示窗。

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages