初始化上传

This commit is contained in:
2025-08-26 08:37:44 +08:00
commit 31d81b91b6
448 changed files with 80981 additions and 0 deletions

View File

@@ -0,0 +1,31 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
namespace .Utility
{
//public class BindingProxy : Freezable
//{
// #region Overrides of Freezable
// protected override Freezable CreateInstanceCore()
// {
// return new BindingProxy();
// }
// #endregion Overrides of Freezable
// public object Data
// {
// get { return (object)GetValue(DataProperty); }
// set { SetValue(DataProperty, value); }
// }
// // Using a DependencyProperty as the backing store for Data. This enables animation, styling, binding, etc...
// public static readonly DependencyProperty DataProperty =
// DependencyProperty.Register("Data", typeof(object), typeof(BindingProxy), new UIPropertyMetadata(null));
//}
}