- SyntaxEditor keyword collections can now be exported and imported
The SyntaxEditor now supports the ability to export and import the keywords collections at design-time making it much easier to re-use and update a custom syntax.
SyntaxEditor rendering performance improvements
There have been some changes made to improve rendering performance to prevent jumping and slow colorization on certain machines and processors. Under certain conditions, the colorization would be very jumpy and slow while typing. This was generally due to the processor or OS environment.
SyntaxEditor text paste changed to strip pre-formatted text
When pasting text into the Syntax Editor, any pre-formatted RTF formatting is now stripped and then properly colorized according keyword rules.
New Application Theme Editor now available!
A new tool has been introduced that allows custom application themes to be created visually instead of through code. Once the desired view has been setup for the theme, the source will then be automatically generated for VB.NET or C#. This custom theme can then be loaded into an application. This tool also makes it possible to have a graphics department to create the theme and colors without having any programming knowledge. Simply change the property and see how it affects the overall appearance in the Theme Viewer window real-time.
Syntax Editor now has an AllowTab property that determines if tabs can be entered within the control
The SyntaxEditor now has an AllowTab property that determines if tabs are accepted within the control. By default this property is True. Through this same change, the AcceptTabs property of the control has been made obselete and ReadOnly. So if this property is serialized within a designer file, an error could occur. To remove the error, simply remove the line of code in the designer file that sets the AcceptTabs property.
SyntaxEditor now has a CharsPerTab property
The SyntaxEditor now has a CharsPerTab property that determines how many characters, on average, would consume the width of a single tab. This property defaults to 4.
SyntaxEditor now has a PadFromPreviousLine property
The SyntaxEditor now has a pad from previous line property that pads a new line with any tabs or white space from the previous line. Setting this value back to false will always sends the character position back to the beginning of the line. This property defaults to True.
SyntaxEditor now has a SyntaxLanguage property that allows a pre-defined language to be used
The SyntaxEditor now has 3 pre-defined languages that can be used by simply setting the SyntaxLanguage property. The pre-defined languages are SQL Server, VB.NET, and C#. Obviously custom languages can still be defined by using the Custom SyntaxLanguage option on this property (default).
BO Mapper has been changed to use the SyntaxEditor control
The BO mapper has been changed to use the SyntaxEditor control for a more fluid and useful syntax editing environment. Additionally, the custom syntax has been placed on a separate page tab so there is more room to work when dealing with the custom syntax.
Added functionality to ThemedDetailWindow to make all items within the window be exposed as bindable properties
The ThemedDetailWindow now emits propertys by the key name for each item created within the collection. This allows the value of the collection to be bound using a BBS or standard .NET data binding versus manually setting each item in code.
Changed the exception thrown by a business object when accessing the CurrentRow property when the business object is empty to indicate the name of the table that is throwing the exception
The exception message now shows the [schema].[table] of the business object that is throwing the exception.
DeleteMarkOnly property added to the ListView
A property called DeleteMarkOnly has been added to the ListView so that the developer can determine whether the delete (when handled by the ListView) will just mark the record as deleted and still require another save to update the database, or to immediately delete the record from the BO as well as the database.
A new class called Win32Window is now available that provides a IWin32Window implementation wrapper
There are times that a dialog needs to be shown and the owner of that child dialog or windows needs to be forced. There is an overload for ShowDialog that allows an IWin32Window to be passed defining the owner of the dialog. Using this class as a wrapper, this can be easily done:
Dim f as New Form()
f.ShowDialog(New MicroFour.StrataFrame.Tools.Win32Window(MyParent.Handle))
Added property to ThemedDetailWindow to allow the LineColor to be set independently of the PrimaryGradientColor
The ThemeDetailWindow now has a separate LineColor property that allows the line color to be independently set.
Added property to the DetailWindowItem class to allow the description shadow to be toggled (DescriptionShadow)
At times the shadow for a description may need to be omitted. A property has been added that allows the description of the ThemedDetailWindow to be specified on a per line item basis.
DDT now remembers the last state of the "Show Auto-Generated Stored Procedures"
The "Show Auto-Generated Stored Procedures" state is now remembered between sessions so that it doesn't always have to be turned off to see only the custom sprocs.
DDT Stored Procedures now sorts by category, by priority, by name
The default sorting of the stored procedures has been changed to sort by category, by priorty, by name making it easier to find a specific sproc when there are a lot of them.
DDT gets a face-lift
Over the next several updates there will continue to be a number of UI changes to the DDT that will better accomodate some future enhancements that are coming down the pike. So there have been some considerable aesthetic changes made that will continue to change over the next several builds.
ListView now supports automated column sorting
Four new properties have been added to the ListView that allows the list to be automatically sorted by column. When sorting is turned on, the default direction, column, and whether or not automatic column sort inversion will take place can be defined through the property sheet. The four new properties are:
AutoColumnSort
AutoInvertSortOrder
DefaultSortDirection
DefaultSortColumn
Note: For the sort direction to be automatically inverted, the HeaderStyle must be set to Clickable.
ListView now has a Sort overload to forcibly sort the list
A Sort method overload has been added to the ListView that allows a list to be sorted by column and direction without the need to create a custom ListSorter. This method can be used regardless of the AutoColumnSort state.
PauseSorting and RestoreSorting methods added to the ListView
Two new methods have been added to the ListView called PauseSorting and RestoreSorting. These methods allow the sorting to be forcibly stopped while the developer manually manipulates a ListView (i.e. move index positions, etc) and then restore the sorting once the process has been completed.
PanelManagerPage designer changed to prevent accidental dragging
A common issue with the PanelManager was when attempting to draw or resize the manager. The designer of the pages within the panel manager also allowed the dragging of the page, which could sometimes cause the page to be dragged outside of the panel manager page which caused a number of other issues. Additionally, when the panel page was selected, it show the sizing elements which actually did no good since it was docked within the panel manager. This too has been addressed with this fix.
The ThemedDetailWindow has a new AutoAdjustContolHeight property
The ThemedDetailWindow now has a property called AutoAdjustContolHeight that will automatically adjust the height of the control if any item within the control auto-sizes itself to accomodate a multi-line value. For example, it an item has a value that contains carriage returns, that row is automatically sized. The ThemedDetailWindow will now automatically adjust the height of the control as well if the AutoAdjustContolHeight property is set to True.
ThemedDetailWindow now supports a UseAlternateThemeColors option
The ThemedDetailWindow now has a UseAlternateThemeColors property that renders the control with a different appearance than the default rendering appearance. The alternate appearance renders without a gradient within the description area and produces a more "flat" appearance.
ThemedDetailWindow now supports a watermark image
A ThemedDetailWindow now supports the ability to have a watermark image render on the control. There are three new properties WatermarkImage, WatermarkLocation, and WatermarkOpacity.
The Navigate() method on the BusinessLayer would potentially return a True value if the Navigating event was cancelled
The Navigate() method on the BusinessLayer will now always return a False if the Navigating event was cancelled.
A BrowseDialog search field populating with a Enum Value did not always respect an Initial Value
The BrowseDialog has been changed to store the value within a combo box differently to respect enums. This will only affect enum population. Additionally, the initial value now properly pulls the enum value when set. Previously this was hit and miss depending on the enum value and some other environmental circumstances.
The Database Deployment Toolkit would not allow a table with the same name but different schema to be saved
The unique table criteria has been changed when verifying a unique table name by now include both the name and schema. Previously the table name was the only validation check which prevented a table of the same name but different schema from being created.
DDT now supports the ability to modify a table structure without updating the object history
The ability to modify a table structure without creating object history items is now available. Since this feature should be used VERY sparingly, it is only available through a key + mouse combination on the right list panel only (not the Treeview on the left). The reason that this may be necessary is when copying a table and renaming or removing a lot of fields for a table that has never been deployed. In this case, you may not want the object history to be updated since the structure has never been deployed.
To modify a table structure with updating the object history, press the Ctrl button and then right-click the table within the right list. The Modify Structure will then appear with a "(No Object History)" at the end. When the table structure form appears, this will also be shown in the header of the dialog.
NOTE: This should never be done for structures that have already been deployed in the field and will need to be updated!
The Font of a ListView can now be set through the RowPopulatingEventArgs (RowPopulating event)
The RowPopulatingEventArgs now has a Font property that allows the Font to be set for an individual list item through the RowPopulating event (i.e. e.Font = New Font(...)).
BrowseDialog search fields now have an IgnoreInitialValueIfNotVisible property
To create the most flexbile of environments, an additional flag has been added to a BrowseDialog search fields that provides the ability to ignore a search field's initial value if it is not visible. Previously, if there were a value specified, it would be included within the search regardless of the search field's visiblity within the browse. By adding this flag, it allows an initial search value to be specified and used, yet ignored if it is not visible (not being used within the search criteria).
New application theme - Cool Breeze
A new application theme has been added to the framework called Cool Breeze. This is a spin-off of the BlueSkies theme, however, the Cool Breeze theme is softer and follows a more consistent color palette. Toolstrips, mouse-overs, etc. are much softer (especially when using an alternate theme properties style of rendering).
ThemedContainer rendering modified to improve performance and on-screen interaction
There were a number of issues with the ThemedContainer while rendering. At certain times, the Title would render improperly or possible not at all depending on a number of circumstances. This issue has been resolved. Additionally, the overall rendering of the ThemedContainer has been refactored to improve performance and reduce the footprint which also improved the scrolling effects if this option was being implemented. The refactoring of the rendering addressed a number of other rendering issues as well.