[]
        
(Showing Draft Content)

2012 v2

New Features

  • Added the GrowHorizontally enum value to the AutoSize mode of the drop down.

  • Added localized resources for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hant).

  • Added StartEditing() and FinishEditing() methods to C1TreeView.

  • C1TabControl added support for the 'DataTemplateSelector' property.

  • [C1Chart] Added stacked pie chart(ChartType.PieStacked).

  • [C1Chart] Added new Axis.AnnoVisibility property that controls visibility of axis labels. By default value the overlapped labels are hidden(AnnoVisibility.HideOverlapped).

  • [C1Chart] Added option to show axis annotation inside plot area(AxisPosition.Inner).

  • [C1Chart] Added new class PieSlice that represents plot element for pie chart. It has Offset property that controls radial offset of slice from the original position. Using this property it's possible to set individual offset for each slice or create animation.

    • For Example:

    var ds = new DataSeries() { ValuesSource = new double[] { 1, 2, 2, 1, 2, 1, 2 } }; ds.PlotElementLoaded += (s, e) => 
    {
      var slice = s as PieSlice;
      if (slice != null)
      {
        // add offset for even slices
       if ((slice.DataPoint.PointIndex % 2) == 0)
          slice.Offset = 15;
      }
    };
    chart.Data.Children.Add(ds);
    chart.ChartType = ChartType.Pie;
    • [C1Chart] Class Pie is marked as obsolete, please use new PieSilce instead.

  • [C1DataGrid] MouseWheel support has been added to the panel of the row headers.

  • [C1DataGrid] Added localized resources for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hant)

  • [C1DataGrid] Added the GetPageImages method, which gets a list of elements that represent part of the grid fit for rendering into pages of a document.

  • [C1RichTextbox] A property named Tables has been added.

  • [C1RichTextbox] MinWidthProperty and MinHeightProperty properties have been added.

  • [C1RichTextbox] A CaretBrush property has been added to set the brush of the blinking cursor.

  • [C1Scheduler] The public double AllDayAreaHeight property has been added to the C1Scheduler control to determine the height of the All-Day area in Day/Working Week/Week views:

    • public double AllDayAreaHeight {get; set}

    • The default is 54

Breaking Changes

  • [C1TabControl] The C1TabControl's next and previous button controls have been replaced with RepeatButton controls.

  • [C1DataGrid] DataGrid.ActualDetailsVisibility property setter has been removed. Use DetailsVisibility instead.

  • [C1DataGrid] DataGridColumn.BeginEdit is not called on key down. It is called on the text input event.

  • [C1DataGrid] DataGridAggregatesCollection base class has changed from List<T> to ObservableCollection<T> in order to be able to update summary rows when new functions are added to the collection.

  • [C1Report] Internal changes consistent with ComponentOne Reports for WinForms version 20122.54513. See the Reports for WinForms version history for details.

  • [C1Toolbar] The C1Toolbar Previous and Next Button controls have been replaced with RepeatButton controls to allow easier scrolling between tabs.

Improvements

  • [C1Binding] Added two internal classes: ExposedTally and XobjectExpression.

  • [C1Chart3D] Added Axis3D.Reversed property that allows to change the direction of axis.

  • [C1Chart3D] Added C1Chart3DLegend.Reversed property that changes the order of legend items.

  • [C1Chart] Added ChartView.Inverted property that allows to change direction of plotting and swap x- and y-axes.

  • [C1Chart] Added support of inverted direction for financial charts(HiLowOpenClose/Candle).

  • [C1DataGrid] The DataGridFilterListPanel has been added to improve the layout of the filter when the space is too small to display all the information correctly.

  • [C1DataGrid] Localized resources for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hant) have been added.

  • [C1DockControl] Two overloaded functions have been added to Save and Load to keep each item's content and not re-create items.

  • [C1DockControl] The Save and Load function has been improved to behave more efficiently.

  • [C1DockControl] The C1DropDownButton's menu will close when the user clicks outside the C1DropDownButton in the C1DockControl.

  • [C1DockControl] Localized resources for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hant) have been added.

  • [C1DockControl] C1DockControl has added support for 'DataTemplateSelector'.

  • Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hant).

  • [C1FlexGrid] Support has been added for the IME editor.

  • [C1FlexGrid] Star sizing has been improved to handle large star values correctly.

  • [C1FlexGrid] Users can now add rows by typing into a new row template at the bottom of the grid with the AllowAddNew property.

  • [C1FlexGrid] The NewRowBackground property has been added to control the color of the new row template.

  • [C1FlexGrid] Adding new rows is supported if the grid is bound to a data source that supports adding new items by setting IEditableCollectionView.CanAddNew to True.

  • [C1FlexGrid] The Paste method SetClipString methods now raise BeginningEdit and CellEditEnded events before and after assigning new values to cells.

  • [C1FlexGrid] Methods to configure the ColumnValueConverter after creation have been added to make it easier to create ColumnValueConverter objects in MVVM scenarios:

    • public void SetSource(IDictionary dictionary) // exclusive dictionary of Values/DisplayValues

    • public void SetSource(ICollection values, bool exclusive) // list of suggested/required Values

  • [C1Map] Bing Maps authentication has been updated to the Bing Maps Key. The Bing Maps Token Service will be retired on March 30, 2012.

  • [C1MediaPlayer] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

  • [C1OutlookBar] Localization has been added to the C1OutlookBar control.

  • [C1OutlookBar] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

  • [C1PdfViewer] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

  • [C1PdfViewer] The AutoContentRotation property has been added to the control to indicate whether the printer will automatically change the orientation according to the size of the content.

  • [C1PdfViewer] C1PDFViewer now pre loads the next and previous two pages when the current page is loaded.

  • [C1PdfViewer] PagePreparing and PagePrepared events have been added. They are fired when the pdf pages start and end rendering.

  • [C1PdfViewer] A ParsingError event has been added that is fired when any error occurs in pdf parsing.

  • [C1ReportViewer] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

  • [C1ReportViewer] The AutoContentRotation property has been added to the control to indicate whether the printer automatically changes the orientation according to the size of the content.

  • [C1ReportViewer] C1ReportViewer now pre loads the next and previous two pages when the current page is loaded.

  • [C1ReportViewer] PagePreparing and PagePrepared events have been added. They are fired when the pdf pages start and end rendering.

  • [C1ReportViewer] A ParsingError event has been added that is fired when any error occurs in pdf parsing.

  • [C1RichTextbox] IME support has been added to C1RichTextBox.

  • [C1RichTextbox] Thai language support has been added to C1RichTextBox.

  • [C1RichTextboxToolbar] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

  • [C1RichTextboxToolbar] Cursor focus has been set at the textbox when opening the Insert Hyperlink window.

  • [C1Scheduler] The appointment Mouse click behavior has changed:

    • . single click on the unselected appointment selects the appointment;

    • . single click on the selected appointment starts inline appointment editing;

    • . double click on the appointment opens edit appointment dialog.

  • [C1SpellChecker] Localized resources have been added for Simplified Chinese (zh-Hans) and Traditional Chinese (zh-Hants).

Bug Fixes

  • Pressing the decimal key on a numeric keypad now inserts a decimal point when the Format is empty.

  • Pressing the backspace key now causes the entry point after a decimal point to jump to a position before the decimal point.

  • When adding a new tab to C1TabControl, the tab control now scrolls to bring it into view consistently.

  • C1ComboBox can get focus by clicking the editable area when the ComboBox is in the TabItem. The Validation effect can be correctly shown.

  • When the size of a C1TabControl is not fixed, there is no longer a black zone displayed when the tab control is inside a filter control.

  • The application no longer hangs when switching TabItems.

  • The TabItem's header and navigation buttons are now shown if it is bound to long text.

  • There is no longer a memory leak in C1TreeView.

  • C1TreeView's focus no longer moves when the IsTabStop property is set to "false".

  • Group rows no longer merge across frozen column boundaries.

  • There is no longer an issue with C1Menu in MVVM.

  • C1TabItem no longer moves to the first place when it is pinned at the preferred place.

  • There is no longer a Design time exception when the C1TreeView IsExpanded property is set to "true".

  • Data now gets displayed even on binding to C1TabControl.

  • The 'Property value is not valid' error is no longer thrown when setting the value to the 'Watermark' property at Design time.

  • In C1TabControl the rest of the tabs no longer disappear after closing two tabs.

  • For C1DropDown, C1Window, C1DropDownButton, C1SplitButton – the individual control names are now mentioned in each Unlicense box.

  • In C1MessageBox, pressing the Enter key now triggers the OK button's click event and pressing the Esc key will now close the MessageBox.

  • In C1TabControl, the selection is no longer lost when the control is pinned.

  • 'Object reference is not set to an instance of an object' no longer appears if the items have been changed before the C1TabControl is loaded.

  • In C1TabControl, tab pages no longer get switched in the Blend 4 development environment.

  • In C1TabControl, the content of a C1TabItem is now shown when binding.

  • In C1DropDown, the header is no longer covered by the content after setting "ForceBelow" to "DropDownDirection".

  • In C1ComboBox, the blinking cursor no longer has effect when setting the 'CaretBrush' property.

  • In C1ComboBox, Items started with upper-case letters are no longer shown when the .NET Framework is 4.0 and the 'IsTextSearchCaseSeneitive' property is set.

  • In C1Window, the control does not disappear when 'DialogResult' is set to 'OK/Cancel/Yes/No'.

  • In C1FilePicker, the SelectedFile and SelectedFiles properties are now being updated.

  • C1ComboBox is now shown in its default state when the 'selectedIndex' Is set to Items.Count from design time in the Property Grid.

  • C1TabControl's TargetInvocationException is no longer thrown when Binding data is called and shown using ItemsSource and ContentTemplate.

  • The C1HyperlinkButton.NavigateUriProperty registered name has been changed to NavigateUri.

  • [C1Binding] Improved the double coercion to handle percentages.

  • [C1Binding] Improved the parsing of numbers to handle numbers with more than 10 decimal digits.

  • [C1Chart] Fixed the problem when rotating Pie3D chart.

  • [C1Chart] The .Net 4.0 design time assemblies now have correct version.

  • [C1Chart] The attached property LineAreaOptions.OptimizationRadius now can be set in XAML.

  • [C1Chart] Fixed the problem with exception in BitmapRender mode.

  • [C1Chart] C1.WPF.C1Chart.Design.4.0.dll now has correct version.

  • [C1Chart] Updated assembly product attribute.

  • [C1Chart] Updated licensing.

  • [C1Chart] The correct .Net4 assembly is included into localized drop.

  • [C1Chart] Fixed the problem with extra gridlines in radar chart when using auxiliary axis.

  • [C1Chart] Removed design time support for old Blend versions(1,2).

  • [C1Chart] Fixed the problem with exception when adding localized .Net4 control in designer.

  • [C1Chart] Zooming now works correctly when chart is hosted in MFC application.

  • [C1Chart] Fixed problem with partial clipping of lines on the edge of plot.

  • [C1Chart] Gradient or image brush now works properly with chart's background.

  • [C1Chart] Fixed the problem with localized build in unlicensed state.

  • [C1Chart] Fixed the problem with exception when setting axis minimum larger than data maximum.

  • [C1Chart] Fixed the problem with updating PlotElement.Size in PlotElementLoaded event

  • [C1Chart] Renderer.Inverted property now work correctly.

  • [C1Chart] Fixed the problem with chart's scrollbar appearance when theme was applied

  • [C1Chart] Fixed the problem with bar chart display.

  • [C1Chart] Chart is updated properly after setting custom palette.

  • [C1Chart3D] Chart legend items are displayed correctly.

  • [C1Chart3D] Fixed the problem with incorrect display of stacked pie chart when number of series is larger than two.

  • [C1Chart3D] Updated info in about box.

  • [C1Chart3D] Fixed the problem that may cause exception when zooming in bitmap render mode.

  • [C1Chart3D] Chart type now is changed correctly from Pie to PieStacked and vice versa.

  • [C1Chart3D] Axis.ItemsLabelBinding/ItemsValueBinding now can be set in Xaml.

  • [C1Chart3D] Fixed the problem that may cause exception when showing about box.

  • [C1Chart3D] Updated assembly copyright.

  • [C1DataGrid] The Filter row no longer raises an exception when displayed in WPF 4.0.

  • [C1DataGrid] The refresh() method of the inner collection view is no longer being called unnecessarily when the ItemsSource property is set.

  • [C1DataGrid] When printing a grouped C1DataGrid, the collapsed groups are no longer being printed as expanded.

  • [C1DataGrid] Filtering the expression Equals to null no longer raises an exception in non-nullable numeric columns.

  • [C1DataGrid] Mouse events received in the filter are no longer prevented from passing to the column header.

  • [C1DataGrid] Expand/collapse buttons in group rows are now printed correctly.

  • [C1DataGrid] An exception is no longer raised when dragging cells in the main panel.

  • [C1DataGrid] A validation icon is now shown when the row is still in the editing status.

  • [C1DataGrid] Rows with null values are now shown when filtering with empty strings.

  • [C1DataGrid] The TargetInvocationException is no longer thrown when using a RIA service when the datagrid is grouped and reloaded.

  • [C1DataGrid] The DataGrid filter is no longer showing a black area after the size of the filter is changed.

  • [C1DataGrid] Text entered via IME pad is now being sent to the DataGrid when the user presses Enter.

  • [C1DataGrid] The interface INotifyPropertyChanged is now implemented in the DataGrid, allowing the target of the binding to be updated as a selection changes when the property SelectedItems is the source of the binding.

  • [C1DataGrid] Focus is now being set to the DataGrid when the first cell is clicked, allowing the up/down keys to work correctly.

  • [C1DataGrid] The DataGridGroupWithSummaryRow performance problem has been fixed when there are more than 100,000 rows.

  • [C1DataGrid] DataGridGroupWithSummaryRow is now considered the property GroupRowHeight of the DataGrid in order to render this row.

  • [C1DataGrid] The MouseWheel is now handled when the tp or the bottom of the viewport is reached.

  • [C1DataGrid] The CurrentRow is now preserved when items are reloaded and the current row is a top or bottom row.

  • [C1DataGrid] C1DataGrid no longer prevents entering edit mode when Ctrl+V is pressed.

  • [C1DataGrid] DateTime operators (Equal, NotEqual, Greater, Less) iw now working when filtering a BindingListCollectionView.

  • [C1DataGrid] Focus is now set in the DataGrid when the row header is pressed.

  • [C1DataGrid] An exception is no longer raised when clearing columns while a frozen column is present.

  • [C1DataGrid] FilterCombination is now working when 'OR' is set and the underlying collection view is BindingListCollectionView.

  • [C1DataGrid] ValidationBackgroundBrush is now being propagated to the "new row" header.

  • [C1DataGrid] An exception is no longer raised when pressing the up key and the upper row is removed because a cell changed.

  • [C1DataGrid] An exception is no longer raised when SettingDetailsVisibility in a "Top" or "Bottom" row.

  • [C1DataGrid] Invisible columns are now being skipped when pressing the tab key.

  • [C1DataGrid] Focus is now set on the grid after pressing the "Select All" button in the top left corner of the data grid in order to allow the user to press Ctrl+C to copy the selected data.

  • [C1DataGrid] The DataGrid no longer prevents the DataGrid from entering edit mode when Ctrl+C is pressed.

  • [C1DataGrid] An exception is no longer raised when dragging the mouse to select cells and a change in the layout occurs at the same time.

  • [C1DataGrid] Focus is now being set when a row is initially clicked. When the selectable row, for example a group row, is selected, selection events are being raised.

  • [C1DataGrid] The DataGrid now prevents a row from entering edit mode when the column is not editable.

  • [C1DataGrid] Selection is no longer lost after editing a DataGrid whose ItemSource is set to a CollectionViewSource through a binding.

  • [C1DataGrid] Columns are no longer being incorrectly auto-generated when the data item type implemented ITypeLis.

  • [C1DataGrid] The performance problem when changing the data source or setting it to null has been fixed.

  • [C1DataGrid] The filter button is no longer disabled after a value is entered and the radio buttons are now working properly.

  • [C1DataGrid] The Scroll is now working with C1FullTextSearchBehavior implemented in DataGrid.

  • [C1DataGrid] DataGridGroupWithSummaryRow is now considered the property GroupRowHeight of the data grid in order to render this row.

  • [C1DataGrid] DataGridGroupWithSummaryRow performance problem has been fixed when there are more than 100.000 groups.

  • [C1DockControl] C1DockTabControl now gets closed when closing the dock tab item with DockMode set to Floating.

  • [C1DockControl] C1DockTabControl is now displayed at design time if DockMode is set to Floating.

  • [C1DockControl] C1DockTabControl can no longer be dragged or resized beyond C1DockControl'd boundary.

  • [C1Book] A NullReferenceException is no longer thrown when changing the themes at run time.

  • [C1Accordion] Focus no longer moves despite setting the IsTabStop property to 'False'.

  • [C1Book] An IndexOutOfRangeException is no longer thrown when TurnPageOnClick and IsFirstPageOnTheRight are set to true and the user is clicking the page quickly.

  • [C1Reflector] can now reflect when C1Reflector is the child control of another control and it is re-loaded.

  • [PropertyGrid] An InvalidOperationException is no longer thrown on clicking the collection editor button for the Items Collection of a bound control.

  • [C1CoverFlow] CoverFlow items no longer disappear after applying a theme.

  • [C1FlexGrid] Footer aggregates are now updated on Paste().

  • [C1FlexGrid] The HitTest(pt) method now works correctly for column headers.

  • [C1FlexGrid] Group rows can no longer merge across frozen column boundaries.

  • [C1FlexGrid] HitTestInfo for an empty area is now returned as Row/Col==0 instead of -1.

  • [C1FlexGrid] A nullable value no longer persists in Value filters.

  • [C1FlexGrid] Extra checks have been added to the mouse handling code.

  • [C1FlexGrid] There is no longer an issue with the tab key and IME editor support.

  • [C1FlexGrid] LoadColumnLayout is no longer allowed to work when columns have no names.

  • [C1FlexGrid] The Column.Converter assignment now works in cases where the binding is already in use.

  • [C1FlexGrid] The GroupHeaderConverter now shows "{DependencyProperty.UnsetValue}" instead of "".

  • [C1FlexGrid] There is no longer an issue with group header selection/invalidation.

  • [C1FlexGrid] Type coercion when editing unbound merged cells has been improved.

  • [C1FlexGrid] Dragging rows when the grid is bound to a sorted data source is no longer prevented.

  • [C1FlexGrid] The editor drop down now closes when the control loses focus.

  • [C1FlexGrid] The cursor property is now honored.

  • [C1FlexGrid] Sorting while editing cells is now allowed.

  • [C1FlexGrid] The star size has been fixed to work with outline columns.

  • [C1FlexGrid] There is no longer an issue with binding to nullable boolean values.

  • [C1FlexGrid] MeasureOverride to auto size containers has been improved.

  • [C1FlexGrid] Focus handling on checkbox cells has been improved.

  • [C1FlexGrid] There is no longer a security issue related to ICustomPropertyDescriptor in partial trust applications.

  • [C1FlexGrid] Cell merging now happens based on formatted rather than raw cell values.

  • [C1FlexGrid] IME handling no longer causes invalid characters to be inserted in the grid.

  • [C1Map] C1Map's dragging has been improved to make it more like Pan Tool dragging.

  • [C1OutlookBar] C1Outbar max width and resize properties have been fixed.

  • [C1OutlookBar] Menu list options at the bottom of the menu now get localized according to the culture.

  • [C1OutlookBar] A restriction has been added to C1OutlookBar that the control must be within the boundaries of the Silverlight Host.

  • [C1PdfViewer] A catch exception is no longer thrown when trying to open encrypted Pdf files without providing a password. See http://our.componentone.com/groups/windows-phone/studio-for-windows-phone/forum/topic/c1pdfviewer-how-to-catch-exceptions/#post-174127 for more information.

  • [C1PdfViewer] A NullReferenceException is no longer thrown on closing the document.

  • [C1PdfViewer] Texts with different fonts are now displayed in C1PDFViewer.

  • [C1PdfViewer] Left, right, and bottom borders are no longer clipped.

  • [C1PdfViewer] The first word is no longer skipped in using 'find text'.

  • [C1PdfViewer] When a user selects specific text in a Pdf document, extra text is no longer selected as well.

  • [C1PdfViewer] The RequestNavigate event is now working for relative links in C1PDFViewer.

  • [C1Report] Fixed: some databound images were displayed incorrectly (wrong images were shown).

  • [C1Report] Fixed: in some cases metafiles rendered into a C1PrintDocument showed as "zoomed in".

  • [C1Report] Fixed: dashed lines are now supported in export to XPS and WPF viewer.

  • [C1ReportViewer] Items are now displayed in the Zoom dropdown when the .mhtml file is loaded from the constructor.

  • [C1ReportViewer] An exception is no longer thrown when the .mhtml file is loaded in C1ReportViewer.

  • [C1ReportViewer] An effect is now seen after setting the "BorderBrush" and "BorderThickness" properties in C1ReportViewer.

  • [C1ReportViewer] PDF files are no longer rendered as a blank page in printing.

  • [C1RichTextbox] The application now responds after the user pastes improperly formatted HTML into the C1RichTextBox control.

  • [C1RichTextbox] The DocumentProperty no longer loses binding in the C1RichTextBox control.

  • [C1RichTextbox] The TextChanged event is no longer fired multiple times when actions are fired:

    • paste

    • cut

    • undo

    • redo

    • delete

    • Enter key down

  • [C1RichTextbox] Max-Width and CSS class properties are no longer recognized in an img tag.

  • [C1RichTextbox] A NullReferenceExceptions is no longer thrown when a binding expression is set to the DocumentProperty in XAML at design time.

  • [C1RichTextbox] An exception is no longer observed on scrolling the grid when C1RichTextBox is used in Telerik Grid.

  • [C1RichTextbox] A NullReferenceException is no longer thrown when selecting table data to be copied and the cursor is out of bounds of the table.

  • [C1RichTextbox] The cursor will now be inserted at the correct place when a negative text-indent is applied.

  • [C1RichTextbox] The user can now type in C1RichTextBox after an external link has been pasted into the control.

  • [C1RichTextbox] Images from web paths are now shown in C1RichTextBox.

  • [C1RichTextbox] The floating text box in RichTextBox now displays all characters if a long string of Japanese Hiragana characters are entered.

  • [C1RichTextbox] An unhandled exception is no longer thrown if '
' is contained in an html tag.

  • [C1RichTextbox] An exception is no longer thrown when a user chooses the 'HTML' option button.

  • [C1RichTextbox] Hyperlinks are no longer removed when the spelling of the hyperlink is corrected.

  • [C1RichTextbox] C1TextDecoration.ToString() no longer returns incorrect values.

  • [C1RichTextbox] There is now support for Korean characters.

  • [C1RichTextbox] The "Convert Text to Table" command now creates a table column for Japanese text.

  • [C1RichTextbox] Support for Arabic has been added.

  • [C1RichTextbox] Bullets are now removed on pressing the Backspace key.

  • [C1RichTextbox] A NotSupportedException is no longer thrown on scrolling a rendered HTML file.

  • [C1RichTextbox] There is no longer a scrolling problem when C1RichTextBox is placed inside ScrollViewer.

  • [C1RichTextbox] Two spaces are no longer inserted when a single space is inserted.

  • [C1RichTextbox] Bullets and Numbering are now working in C1RichTextBox.

  • [C1RichTextbox] HTML content with margins and horizontal lines are now correctly shown.

  • [C1RichTextbox] The HTML format option tag is no longer missing.

  • [C1RichTextbox] Some data which contains Chinese is no longer missing when pasted into MS Word.

  • [C1RichTextboxToolbar] The selected color now fills the entire cell when a cell is selected and has the paragraph background set.

  • [C1Scheduler] The EndDate is now displayed in MonthView if the weekday of the EndDate is the same as the WeekStart day.

  • [C1Scheduler] Recurring appointments can now be fetched through the Appointment.Conflicts property.

  • [C1TileView] The fix current state template is now applied to a newly added tile.

  • [C1TileView] An unhandled exception is no longer thrown when clearing all items after scrolling the vertical scrollbar.

  • [C1TileView] C1TileViewItems can now be added by code when no item already exists.

  • [C1TileView] The MaximizedItem property can now be set from the property grid.

  • [C1TileView] The ContentMaximized and ContentMinimized properties can now be set from the property grid.

  • [C1TileView] Text in the textbox no longer disappears when the tile state is changed if using the ContentTemplate property.

  • [C1TileView] AssemblyProduct is no longer incorrect in AssemblyInfo.