This commit is contained in:
@@ -36,6 +36,12 @@ namespace Volian.Controls.Library
|
||||
if (LinkModifyTran != null) LinkModifyTran(sender, args);
|
||||
else MessageBox.Show(args.LinkInfo.LinkText, "Unhandled Link Modify Tran", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public event DisplayPanelLinkEvent LinkModifyRO;
|
||||
internal void OnLinkModifyRO(object sender, DisplayLinkEventArgs args)
|
||||
{
|
||||
if (LinkModifyRO != null) LinkModifyRO(sender, args);
|
||||
else MessageBox.Show(args.LinkInfo.LinkText, "Unhandled Link Modify RO", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public event DisplayPanelAttachmentEvent AttachmentClicked;
|
||||
internal void OnAttachmentClicked(object sender, DisplayPanelAttachmentEventArgs args)
|
||||
{
|
||||
@@ -167,7 +173,7 @@ namespace Volian.Controls.Library
|
||||
if (_DisplayRTB != null)
|
||||
{
|
||||
_DisplayRTB.BackColor = InactiveColor;
|
||||
//_DisplayRTB.SaveText(); // Save any changes to the text
|
||||
_DisplayRTB.SaveText(); // Save any changes to the text
|
||||
}
|
||||
_DisplayRTB = value;
|
||||
if (_ItemSelected.ItemID != value.MyItem.ItemID)
|
||||
|
Reference in New Issue
Block a user