SkinRichTextBox.cs 1.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Drawing;
  4. using System.Windows.Forms;
  5. namespace LYFZ.OtherExpansion.SkinControl
  6. {
  7. [ToolboxBitmap(typeof(RichTextBox))]
  8. public class SkinRichTextBox : RichTextBox
  9. {
  10. private RichEditOle _richEditOle;
  11. private Dictionary<int, REOBJECT> _oleObjectList;
  12. public Dictionary<int, REOBJECT> OleObjectList
  13. {
  14. get
  15. {
  16. if (this._oleObjectList == null)
  17. {
  18. this._oleObjectList = new Dictionary<int, REOBJECT>(10);
  19. }
  20. return this._oleObjectList;
  21. }
  22. }
  23. public RichEditOle RichEditOle
  24. {
  25. get
  26. {
  27. if (this._richEditOle == null && base.IsHandleCreated)
  28. {
  29. this._richEditOle = new RichEditOle(this);
  30. }
  31. return this._richEditOle;
  32. }
  33. }
  34. public bool InsertImageUseGifBox(string path)
  35. {
  36. bool result;
  37. try
  38. {
  39. SkinGifBox gif = new SkinGifBox();
  40. gif.BackColor = base.BackColor;
  41. gif.Image = Image.FromFile(path);
  42. this.RichEditOle.InsertControl(gif);
  43. result = true;
  44. }
  45. catch (Exception)
  46. {
  47. result = false;
  48. }
  49. return result;
  50. }
  51. }
  52. }