123456789101112131415161718192021222324252627282930313233343536373839404142 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Drawing;
- using System.Data;
- using System.Linq;
- using System.Text;
- using System.Windows.Forms;
- namespace LYFZ.ComponentLibrary
- {
- public partial class UCNavigationTool : UserControl
- {
- public UCNavigationTool()
- {
- InitializeComponent();
- this.BackColor = LYFZ.ComponentLibrary.GetUIResources.UCNavigationToolColor;
- this.panelEx1.BackgroundImage = LYFZ.ComponentLibrary.GetUIResources.main_Navigation;
-
- }
-
- /// <summary>
- /// 获取或设置当前标题
- /// </summary>
- [DescriptionAttribute("设置当前标题"), CategoryAttribute("组件扩展属性")]
- public string LabTitle {
- get { return this.labCTile.Text; }
- set
- {
- this.labCTile.Text = value;
- if (value.Trim().Length <= 0)
- {
- this.labelEx1.Text = "主界面";
- }
- else {
- this.labelEx1.Text = "主界面 > ";
- }
- }
- }
- }
- }
|