DevExpress の ASPxScheduler でのスケジュール登録画面の幅設定のサンプルです。
現状の画面デザインはこのようになっています。
<スケジュール登録画面の幅設定>
・「ASPxScheduler1」の「PrepareAppointmentFormPopupContainer」イベントで、「e.Popup.Width = Unit.Pixel(250)」を設定します。
【WebForm1.aspx.vb サンプルプログラム(VB.Net)】
1 2 3 4 5 |
Private Sub ASPxScheduler1_PrepareAppointmentFormPopupContainer(sender As Object, e As DevExpress.Web.ASPxScheduler.ASPxSchedulerPrepareFormPopupContainerEventArgs) Handles ASPxScheduler1.PrepareAppointmentFormPopupContainer 'ポップアップ 'サイズ設定 e.Popup.Width = Unit.Pixel(250) End Sub |
それでは、実行して動作確認を行います。
↓
無事にスケジュール登録画面の幅設定が出来ました。