Пользовательский рендер не используется при обновлении привязываемого свойства - PullRequest
0 голосов
/ 04 мая 2018

Пожалуйста, рассмотрите следующую проблему.

В моем приложении Xamarin.Forms у меня есть пользовательский рендер для UWP, который позволяет кнопке иметь две строки и быть централизованным.

Кнопки в вопросах - это элементы в ListView, связанные с объектами. При первоначальной генерации они отображаются корректно с обеими строками текста в центре кнопки, однако, если я обновляю текст, он обновляется, но, похоже, игнорирует пользовательский рендеринг кода «быть в центре».

Пожалуйста, ознакомьтесь с фрагментами кода и изображениями ниже, чтобы объяснить ситуацию.

Пользовательский рендер

[assembly: ExportRenderer(typeof(TwoLinedButton), typeof(TwoLinedButtonUWP))]
namespace aphiresawesomeproject.UWP
{
    public class TwoLinedButtonUWP : ButtonRenderer
    {
        protected override void OnElementChanged(ElementChangedEventArgs<Button> e)
        {
            base.OnElementChanged(e);

            if (Control != null && e.NewElement.Text != null)
            {
                var textBlock = new Windows.UI.Xaml.Controls.TextBlock
                {
                    Text = e.NewElement.Text,
                    TextAlignment = Windows.UI.Xaml.TextAlignment.Center,
                    TextWrapping = TextWrapping.WrapWholeWords
                };
                Control.Content = textBlock;
            }
        }
    }
}

XAML

<ListView x:Name="AphiresListView" CachingStrategy="RecycleElement" ItemsSource="{Binding ListViewItems}" Margin="0,20,0,0" RowHeight="130" SeparatorVisibility="None" VerticalOptions="FillAndExpand" Grid.Column="1" Grid.Row ="3" >
    <ListView.ItemTemplate>
        <DataTemplate>
            <ViewCell>
                <local:TwoLinedButton Command="{Binding ClickedCommand}" Margin="5,10,5,10" HorizontalOptions ="FillAndExpand" BackgroundColor="{Binding color_hex}" Grid.Column="1" TextColor="{StaticResource LightTextColor}" FontSize="Medium" Text="{Binding problem_title}"></local:TwoLinedButton>
            </ViewCell>
        </DataTemplate>
    </ListView.ItemTemplate>
</ListView>

Обновление в Viewmodel

foreach (AphiresObject ViewItem in ListViewItems)
{
    ViewItem.problem_title = ViewItem.problem_title.Replace("Line 2", "Updated Line 2");
}

До

enter image description here

* После 1034 *

enter image description here

1 Ответ

0 голосов
/ 04 мая 2018

Я думаю, что все, что вам нужно сделать, это override OnElementPropertyChanged в вашем рендерере и установить свойства textBlock снова, когда ваше свойство text изменится.

protected override void OnElementPropertyChanged(object sender, PropertyChangedEventArgs e)
{
    base.OnElementPropertyChanged(sender, e);

    if (e.PropertyName == TwoLinedButton.TextProperty.PropertyName)
    {
        //Set text block properties
    }
}
...