mirror of
https://github.com/eggplantlwj/VisionEdit.git
synced 2026-03-28 19:26:35 +08:00
1、优化LOG显示与引用
2、添加PMA工具,工具内容待完善 3、修复流程树显示 4、添加开源项目,优化UI空间 5、其他BUG更改
This commit is contained in:
122
UsingControl/HZHControls/Forms/FrmWithTitle.cs
Normal file
122
UsingControl/HZHControls/Forms/FrmWithTitle.cs
Normal file
@@ -0,0 +1,122 @@
|
||||
// ***********************************************************************
|
||||
// Assembly : HZH_Controls
|
||||
// Created : 08-08-2019
|
||||
//
|
||||
// ***********************************************************************
|
||||
// <copyright file="FrmWithTitle.cs">
|
||||
// Copyright by Huang Zhenghui(黄正辉) All, QQ group:568015492 QQ:623128629 Email:623128629@qq.com
|
||||
// </copyright>
|
||||
//
|
||||
// Blog: https://www.cnblogs.com/bfyx
|
||||
// GitHub:https://github.com/kwwwvagaa/NetWinformControl
|
||||
// gitee:https://gitee.com/kwwwvagaa/net_winform_custom_control.git
|
||||
//
|
||||
// If you use this code, please keep this note.
|
||||
// ***********************************************************************
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.ComponentModel;
|
||||
using System.Data;
|
||||
using System.Drawing;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Windows.Forms;
|
||||
|
||||
namespace HZH_Controls.Forms
|
||||
{
|
||||
/// <summary>
|
||||
/// Class FrmWithTitle.
|
||||
/// Implements the <see cref="HZH_Controls.Forms.FrmBase" />
|
||||
/// </summary>
|
||||
/// <seealso cref="HZH_Controls.Forms.FrmBase" />
|
||||
[Designer("System.Windows.Forms.Design.ParentControlDesigner, System.Design", typeof(System.ComponentModel.Design.IDesigner))]
|
||||
public partial class FrmWithTitle : FrmBase
|
||||
{
|
||||
/// <summary>
|
||||
/// Gets or sets the title.
|
||||
/// </summary>
|
||||
/// <value>The title.</value>
|
||||
[Description("窗体标题"), Category("自定义")]
|
||||
public string Title
|
||||
{
|
||||
get
|
||||
{
|
||||
return lblTitle.Text;
|
||||
}
|
||||
set
|
||||
{
|
||||
lblTitle.Text = value;
|
||||
}
|
||||
}
|
||||
/// <summary>
|
||||
/// The is show close BTN
|
||||
/// </summary>
|
||||
private bool _isShowCloseBtn = false;
|
||||
/// <summary>
|
||||
/// Gets or sets a value indicating whether this instance is show close BTN.
|
||||
/// </summary>
|
||||
/// <value><c>true</c> if this instance is show close BTN; otherwise, <c>false</c>.</value>
|
||||
[Description("是否显示右上角关闭按钮"), Category("自定义")]
|
||||
public bool IsShowCloseBtn
|
||||
{
|
||||
get
|
||||
{
|
||||
return _isShowCloseBtn;
|
||||
}
|
||||
set
|
||||
{
|
||||
_isShowCloseBtn = value;
|
||||
btnClose.Visible = value;
|
||||
if (value)
|
||||
{
|
||||
btnClose.Location = new Point(this.Width - btnClose.Width - 10, 0);
|
||||
btnClose.BringToFront();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/// <summary>
|
||||
/// Initializes a new instance of the <see cref="FrmWithTitle" /> class.
|
||||
/// </summary>
|
||||
public FrmWithTitle()
|
||||
{
|
||||
InitializeComponent();
|
||||
InitFormMove(this.lblTitle);
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Handles the Shown event of the FrmWithTitle control.
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
|
||||
private void FrmWithTitle_Shown(object sender, EventArgs e)
|
||||
{
|
||||
if (IsShowCloseBtn)
|
||||
{
|
||||
btnClose.Location = new Point(this.Width - btnClose.Width - 10, 0);
|
||||
btnClose.BringToFront();
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/// <summary>
|
||||
/// Handles the VisibleChanged event of the FrmWithTitle control.
|
||||
/// </summary>
|
||||
/// <param name="sender">The source of the event.</param>
|
||||
/// <param name="e">The <see cref="EventArgs" /> instance containing the event data.</param>
|
||||
private void FrmWithTitle_VisibleChanged(object sender, EventArgs e)
|
||||
{
|
||||
}
|
||||
|
||||
private void btnClose_Click(object sender, EventArgs e)
|
||||
{
|
||||
this.Close();
|
||||
}
|
||||
|
||||
private void FrmWithTitle_SizeChanged(object sender, EventArgs e)
|
||||
{
|
||||
btnClose.Location = new Point(this.Width - btnClose.Width, btnClose.Location.Y);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user