Gallery for ASP.NET Web Forms
ギャラリーの向きの設定
タスク別ヘルプ > ギャラリーの向きの設定

デフォルトでは、C1Gallery コントロールは、水平の向きで表示されます。 この例では、 ThumbnailOrientation プロパティと ThumbnailDirection プロパティを使用してギャラリーにサムネイル画像を表示する方法を変更できます。

ソースビューの場合

ソースビューで、ThumbnailOrientation="Vertical" ThumbnailDirection="Before"<cc1:C1Gallery>タグに追加します。その結果、次のようになります。

ソースビュー
コードのコピー
<cc1:C1Gallery ID="C1Gallery1" runat="server" ThumbnailOrientation="Vertical" ThumbnailDirection="Before">

デザインビューの場合

デザインビューで、C1Galleryコントロールを選択し、プロパティウィンドウで次のプロパティを設定します。

C1Gallery タスクメニューで、サムネイルの方向 プロパティを Vertical に設定することもできます。 詳細については、「C1Gallery スマートタグ 」を参照してください。

コードの場合

次のコードをPage_Loadイベントに追加します。

Visual Basic コードの書き方

Visual Basic
コードのコピー
Me.C1Gallery1.ThumbnailOrientation = "Vertical"

Me.C1Gallery1.ThumbnailDirection = "Before"

C# コードの書き方

C#
コードのコピー
this.C1Gallery1.ThumbnailOrientation = "Vertical";

this.C1Gallery1.ThumbnailDirection = "Before";
関連トピック