<Border Grid.Row="1" Background="Gray" Padding="7">
<StackPanel Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,0,30,0">
<optimumScheduler:LookUpOKButton Grid.Row="1" Content="OK" HorizontalAlignment="Center" Padding="20,0,20,0" Margin="0,0,20,0"/>
<optimumScheduler:LookUpCancelButton Grid.Row="1" Content="Cancel" HorizontalAlignment="Center" Padding="20,0,20,0"/>
エントリー条件を付ける必要があります。OKボタンを調整する必要があります。ユーザーが患者、医師/セラピスト、部門のいずれも入力しない場合は、[OK] ボタンを無効にするか、入力を許可しないようにします。
ここで定義されています。それらの中の一つ。件名にエントリが必要であることをどのようにコーディングしますか
public static string FormatAppointmentFormCaption(bool allDay, string subject, bool readOnly)
{
string format = allDay ? "Event - {0}" : "Appt Editor - {0}";
string text = subject;
if (string.IsNullOrEmpty(text))
text = "Untitled";
text = String.Format(CultureInfo.InvariantCulture, format, text);
if (readOnly)
text += " [Read only]";
return text;
}