que tienen un control de usuario que tiene una altura de 100 Canvas
y anchura 1920.WPF ActualWidth es cero
En la carga del control, voy a una fuente externa, descargar un archivo de texto y añadir a TextBlock
s el lienzo. Entonces quiero crear un efecto de desplazamiento de marquesina que debería funcionar bien, excepto después de agregar el TextBlock
al Canvas
, necesito obtener su ancho para fines de cálculo, pero la propiedad ActualWidth
siempre es cero.
Aquí hay un código:
private readonly LinkedList<TextBlock> textBlocks = new LinkedList<TextBlock>();
public LocalNewsControl()
{
Loaded += LocalNewsControlLoaded;
}
private void LocalNewsControlLoaded(object sender, RoutedEventArgs e)
{
LoadDataContext();
}
private void LoadDataContext()
{
DataContext = new NewsItemsViewModel((exception) => LoadNewsItems());
}
private void LoadNewsItems()
{
var viewModel = (NewsItemsViewModel)DataContext;
NewsCanvas.Children.Clear();
textBlocks.Clear();
foreach (var newsViewModel in viewModel.NewsItems)
{
var tb = new TextBlock
{
Text = newsViewModel.Headline,
FontSize = 28,
FontWeight = FontWeights.Normal,
Foreground = Brushes.Black
};
NewsCanvas.Children.Add(tb);
Canvas.SetTop(tb, 20);
Canvas.SetLeft(tb, -999);
textBlocks.AddLast(tb);
}
Dispatcher.BeginInvoke(new Action(() =>
{
var node = textBlocks.First;
while (node != null)
{
if (node.Previous != null)
{
//THIS IS WHERE ActualWidth is always ZERO
var left = Canvas.GetLeft(node.Previous.Value) + node.Previous.Value.ActualWidth + Gap;
Canvas.SetLeft(node.Value, left);
}
else
Canvas.SetLeft(node.Value, NewsCanvas.Width + Gap);
node = node.Next;
}
}));
}
TextBlock no es visible y no está cargado, por lo que no tiene una propiedad ActualWidth. He resuelto un problema similar con Itemscontrol, pero no estoy seguro de Canvas. Pruebe eventos como LayoutUpdated, SizeChanged, etc. – vorrtex