systeminfo
Всегда в одно и тоже время, пример 10.10.2021 22:30:31, 10.10.2021 22:30:32, 10.10.2021 22:30:33
<!-- Yandex.Metrika informer -->
<a href="https://metrika.yandex.ru/stat/?id=20866243&from=informer"
target="_blank" rel="nofollow"><img src="https://informer.yandex.ru/informer/20866243/3_1_FFFFFFFF_EFEFEFFF_0_pageviews"
style="width:88px; height:31px; border:0;" alt="Яндекс.Метрика" title="Яндекс.Метрика: данные за сегодня (просмотры, визиты и уникальные посетители)" class="ym-advanced-informer" data-cid="20866243" data-lang="ru" /></a>
<!-- /Yandex.Metrika informer -->
<!-- Yandex.Metrika counter -->
<script type="text/javascript" >
(function(m,e,t,r,i,k,a){m[i]=m[i]||function(){(m[i].a=m[i].a||[]).push(arguments)};
m[i].l=1*new Date();k=e.createElement(t),a=e.getElementsByTagName(t)[0],k.async=1,k.src=r,a.parentNode.insertBefore(k,a)})
(window, document, "script", "https://mc.yandex.ru/metrika/tag.js", "ym");
ym(20866243, "init", {
clickmap:true,
trackLinks:true,
accurateTrackBounce:true
});
</script>
<noscript><div><img src="https://mc.yandex.ru/watch/20866243" style="position:absolute; left:-9999px;" alt="" /></div></noscript>
<!-- /Yandex.Metrika counter -->
<cs:ArrowCell Source={Binding Phone} />
public class ArrowCell : ViewCell
{
public static readonly BindableProperty TextProperty =
BindableProperty.Create(nameof(Text), typeof(string), typeof(ArrowCell), default(string));
private readonly Label _label;
public ArrowCell()
{
var textColor = Color.Black;
if (Application.Current.Resources.TryGetValue("TabMenuTextColor", out var color)) textColor = (Color) color;
var cellWrapper = new StackLayout
{
Spacing = 20,
Padding = 15,
Orientation = StackOrientation.Horizontal
};
_label = new Label
{
HorizontalOptions = LayoutOptions.StartAndExpand,
TextColor = textColor
};
var fa = new FontAwesomeIcon(FaIcon.AngleRight)
{
TextColor = textColor,
HorizontalOptions = LayoutOptions.End,
VerticalOptions = LayoutOptions.Center
};
cellWrapper.Children.Add(_label);
cellWrapper.Children.Add(fa);
View = cellWrapper;
}
public string Text
{
get => (string) GetValue(TextProperty);
set => SetValue(TextProperty, value);
}
protected override void OnBindingContextChanged()
{
base.OnBindingContextChanged();
if (BindingContext != null) _label.Text = Text;
}
protected override void OnPropertyChanged([CallerMemberName] string propertyName = null)
{
base.OnPropertyChanged(propertyName);
if (BindingContext != null) _label.Text = Text;
}
}