This commit is contained in:
@@ -20,6 +20,24 @@ namespace Volian.Controls.Library
|
||||
{
|
||||
if (ItemClick != null) ItemClick(sender, args);
|
||||
}
|
||||
public event DisplayPanelLinkEvent LinkActiveChanged;
|
||||
internal void OnLinkActiveChanged(object sender, DisplayLinkEventArgs args)
|
||||
{
|
||||
if (LinkActiveChanged != null) LinkActiveChanged(sender, args);
|
||||
else MessageBox.Show(args.LinkInfo.LinkText, "Unhandled Link Active Changed", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public event DisplayPanelLinkEvent LinkInsertTran;
|
||||
internal void OnLinkInsertTran(object sender, DisplayLinkEventArgs args)
|
||||
{
|
||||
if (LinkInsertTran != null) LinkInsertTran(sender, args);
|
||||
else MessageBox.Show(args.LinkInfo.LinkText, "Unhandled Link Insert Tran", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public event DisplayPanelLinkEvent LinkInsertRO;
|
||||
internal void OnLinkInsertRO(object sender, DisplayLinkEventArgs args)
|
||||
{
|
||||
if (LinkInsertRO != null) LinkInsertRO(sender, args);
|
||||
else MessageBox.Show(args.LinkInfo.LinkText, "Unhandled Link Insert RO", MessageBoxButtons.OK, MessageBoxIcon.Information);
|
||||
}
|
||||
public event DisplayPanelLinkEvent LinkModifyTran;
|
||||
internal void OnLinkModifyTran(object sender, DisplayLinkEventArgs args)
|
||||
{
|
||||
|
Reference in New Issue
Block a user