Mini Kabibi Habibi
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Reflection;
using DevExpress.Utils;
using DevExpress.XtraEditors;
using DevExpress.XtraEditors.Controls;
using DevExpress.XtraEditors.Popup;
using DevExpress.XtraTab;
using DevExpress.XtraBars;
using DevExpress.LookAndFeel;
namespace DevExpress.XtraBars.Demos.SimplePad {
public class ColorPopup {
XtraTabControl tabControl;
Color fResultColor;
BarItem itemFontColor;
PopupControlContainer container;
RichTextBox rtPad;
public ColorPopup(PopupControlContainer container, BarItem item, RichTextBox rtPad) {
this.rtPad = rtPad;
this.container = container;
this.itemFontColor = item;
this.fResultColor = Color.Empty;
this.tabControl = CreateTabControl();
this.tabControl.TabStop = false;
this.tabControl.TabPages.AddRange(new XtraTabPage[] { new XtraTabPage(), new XtraTabPage(), new XtraTabPage()});
for(int i = 0; i < tabControl.TabPages.Count; i++) SetTabPageProperties(i);
tabControl.Dock = DockStyle.Fill;
this.container.Controls.AddRange(new System.Windows.Forms.Control[] {tabControl});
UserLookAndFeel.Default.StyleChanged += new EventHandler(delegate { SetContainerSize(); });
SetContainerSize();
}
void SetContainerSize() {
this.container.Size = CalcFormSize();
}
private XtraTabControl CreateTabControl() { return new XtraTabControl(); }
private ColorListBox CreateColorListBox() { return new ColorListBox(); }
private void SetTabPageProperties(int pageIndex) {
XtraTabPage tabPage = this.tabControl.TabPages[pageIndex];
ColorListBox colorBox = null;
BaseControl control = null;
switch(pageIndex) {
case 0:
tabPage.Text = Localizer.Active.GetLocalizedString(StringId.ColorTabCustom);
control = new ColorCellsControl(null);
DevExpress.XtraEditors.Repository.RepositoryItemColorEdit rItem = new DevExpress.XtraEditors.Repository.RepositoryItemColorEdit();
rItem.ShowColorDialog = false;
(control as ColorCellsControl).Properties = rItem;
(control as ColorCellsControl).EnterColor += new EnterColorEventHandler(OnEnterColor);
control.Size = ColorCellsControlViewInfo.BestSize;
break;
case 1:
tabPage.Text = Localizer.Active.GetLocalizedString(StringId.ColorTabWeb);
colorBox = CreateColorListBox();
colorBox.Items.AddRange(ColorListBoxViewInfo.WebColors);
colorBox.EnterColor += new EnterColorEventHandler(OnEnterColor);
control = colorBox;
break;
case 2:
tabPage.Text = Localizer.Active.GetLocalizedString(StringId.ColorTabSystem);
colorBox = CreateColorListBox();
colorBox.Items.AddRange(ColorListBoxViewInfo.SystemColors);
colorBox.EnterColor += new EnterColorEventHandler(OnEnterColor);
control = colorBox;
break;
}
control.Dock = DockStyle.Fill;
control.BorderStyle = BorderStyles.NoBorder;
control.LookAndFeel.ParentLookAndFeel = itemFontColor.Manager.GetController().LookAndFeel;
tabPage.Controls.Add(control);
}
private void OnEnterColor(object sender, EnterColorEventArgs e) {
fResultColor = e.Color;
OnEnterColor(e.Color);
}
private void OnEnterColor(Color clr) {
container.HidePopup();
rtPad.SelectionColor = clr;
int imIndex = itemFontColor.ImageIndex;
ImageList iml = itemFontColor.Images as ImageList;
Bitmap im = (Bitmap)iml.Images[imIndex];
Graphics g = Graphics.FromImage(im);
Rectangle r = new Rectangle(7, 7, 8, 8);
g.FillRectangle(new SolidBrush(clr), r);
if(imIndex == iml.Images.Count - 1) {
iml.Images.RemoveAt(imIndex);
}
g.Dispose();
iml.Images.Add(im);
itemFontColor.ImageIndex = iml.Images.Count - 1;
}
private ColorCellsControl CellsControl { get { return ((ColorCellsControl)tabControl.TabPages[0].Controls[0]); } }
private string CustomColorsName { get { return "CustomColors"; } }
public Color ResultColor { get { return fResultColor; } }
public Size CalcFormSize() {
Size size = ColorCellsControlViewInfo.BestSize;
size.Height = 6 * ColorCellsControlViewInfo.CellSize.Height + 7 * ColorCellsControlViewInfo.CellsInternval;
return tabControl.CalcSizeByPageClient(size);
}
}
}