Files
C4IT-F4SD-Client/FasdDesktopUi/Basics/UserControls/LoadingDataIndicator.xaml.cs
2025-11-11 11:03:42 +01:00

39 lines
1.0 KiB
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace FasdDesktopUi.Basics.UserControls
{
public partial class LoadingDataIndicator : UserControl
{
#region Properties
public string LoadingText
{
get { return (string)GetValue(LoadingTextProperty); }
set { SetValue(LoadingTextProperty, value); }
}
public static readonly DependencyProperty LoadingTextProperty =
DependencyProperty.Register("LoadingText", typeof(string), typeof(LoadingDataIndicator), new PropertyMetadata(string.Empty));
#endregion
public LoadingDataIndicator()
{
InitializeComponent();
}
}
}