Я хочу протестировать приложение, которое отображает текстовый блок со значением поля данных. Я хотел бы получить фактическую ширину и фактическую высоту после завершения рендеринга. Все отлично работает Проблема появилась в первую очередь, когда я попытался протестировать приложение. Я не могу вызвать диспетчера из тестового проекта.
Ниже приведен код.
this.Loaded += (s, e) =>
{
TextBlock textBlock1 = new TextBlock();
//// Text block value is assigned from data base field.
textBlock1.Text = strValueFromDataBaseField;
//// Setting the wrap behavior.
textBlock1.TextWrapping = TextWrapping.WrapWithOverflow;
//// Adding the text block to the layout canvas.
this.layoutCanvas.Children.Add(textBlock1);
this.Dispatcher.BeginInvoke(DispatcherPriority.Background,
(Action)(() =>
{
//// After rendering the text block with the data base field value. Measuring the actual width and height.
this.TextBlockActualWidth = textBlock1.ActualWidth;
this.TextBlockActualHeight = textBlock1.ActualHeight;
//// Other calculations based on the actual widht and actual height.
}
));
};
Я только начал использовать NUnit. Так что, пожалуйста, помогите мне.
Спасибо