- Added tools to find Symbol Characters in Word Documents
- If the range does not have any characters return an empty string Refresh Most Recent Items when the office button is pressed Added OrdinalChanged Event Used OrdinalChanged Event rather than MyContent.Changed Event when Ordinal is updated. Use OrdinalChanged Event to update Tree Node Refresh MRU list as items are added Use OrdinalChanged Event to update Step Tab - RTBFillIn changed to only update the RTB when the contents change - AdjustSizeForContents changed to raise the HeightChanged event when the Height changes Update the treeview tabs even if the step is not open.
This commit is contained in:
@@ -23,6 +23,7 @@ namespace Volian.Controls.Library
|
||||
}
|
||||
public new MostRecentItem Add(MostRecentItem myMRI)
|
||||
{
|
||||
Refresh();
|
||||
MostRecentItem tmp = null;
|
||||
// Look for the ItemID
|
||||
foreach (MostRecentItem mri in this)
|
||||
@@ -42,6 +43,11 @@ namespace Volian.Controls.Library
|
||||
myMRI.MyItemInfo.BeforeDelete += new ItemInfoEvent(MyItemInfo_BeforeDelete);
|
||||
return myMRI;
|
||||
}
|
||||
public void Refresh()
|
||||
{
|
||||
foreach (MostRecentItem mri in this)
|
||||
mri.Refresh();
|
||||
}
|
||||
|
||||
// delete the item from the most recently used list. This event gets handled
|
||||
// when a delete item occurs.
|
||||
@@ -105,6 +111,7 @@ namespace Volian.Controls.Library
|
||||
public System.Collections.Specialized.StringCollection ToSettings()
|
||||
{
|
||||
if (Count == 0) return null;
|
||||
Refresh();
|
||||
System.Collections.Specialized.StringCollection retval = new System.Collections.Specialized.StringCollection();
|
||||
foreach (MostRecentItem mri in this)
|
||||
retval.Add(mri.ToString());
|
||||
@@ -131,6 +138,10 @@ namespace Volian.Controls.Library
|
||||
_ToolTip = GetToolTip(_MyItemInfo);
|
||||
}
|
||||
}
|
||||
internal void Refresh()
|
||||
{
|
||||
MyItemInfo = MyItemInfo;
|
||||
}
|
||||
private int _ItemID;
|
||||
public int ItemID
|
||||
{
|
||||
|
Reference in New Issue
Block a user