PowerTools MultiRow for Windows Forms 8.0J > 製品の概要 > 旧バージョンからの変更点 > 6.0Jからの変更点 |
ここでは、旧バージョンMultiRow for Windows Forms 6.0J(以下、6.0J)からの変更点について説明します。
|
|
6.0Jで提供していたInputManCellのGcDateCellクラスは、8.0JではGcDateTimeCellクラスとなります。
6.0JのGcDateCellは、移行ツールにより8.0JのGcDateTimeCellに移行されます。
次のクラスのメンバであるLoadTemplateメソッドが非推奨(Obsolete)となりました。これらのメンバは互換性のために残されています。旧バージョンから移行したプロジェクトでこれら非推奨メンバが使用されていると、ビルド時に[警告]が表示されますが、動作上の問題はありません。
Imports GrapeCity.Win.MultiRow Dim textBoxCell1 = New TextBoxCell() textBoxCell1.Style.BackgroundGradientEffect = New GradientEffect(New Color() {Color.White, Color.Pink}, _ GradientStyle.Horizontal, GradientDirection.Forward) GcMultiRow1.Template = Template.CreateGridTemplate(New Cell() {textBoxCell1}) GcMultiRow1.RowCount = 10 GcMultiRow1.Rows(1).Cells(0).Style.BackgroundGradientEffect = New GradientEffect( _ New Color() {Color.White, Color.Pink}, GradientStyle.Vertical, GradientDirection.Backward)
using GrapeCity.Win.MultiRow; TextBoxCell textBoxCell1 = new TextBoxCell(); textBoxCell1.Style.BackgroundGradientEffect = new GradientEffect(new Color[] { Color.White, Color.Pink }, GradientStyle.Horizontal, GradientDirection.Forward); gcMultiRow1.Template = Template.CreateGridTemplate(new Cell[] { textBoxCell1 }); gcMultiRow1.RowCount = 10; gcMultiRow1.Rows[1].Cells[0].Style.BackgroundGradientEffect = new GradientEffect( new Color[] { Color.White, Color.Pink }, GradientStyle.Vertical, GradientDirection.Backward);
<?xml version="1.0" encoding="utf-8" ?> <configuration> <appSettings> <add key="GrapeCity.Win.MultiRow.GcMultiRow.UseLineStyleHair" value="False"/> </appSettings> </configuration>