29 lines
797 B
C#
29 lines
797 B
C#
using System.Windows.Controls;
|
||
using DMS.WPF.Helper;
|
||
using iNKORE.UI.WPF.Modern.Controls;
|
||
|
||
namespace DMS.WPF.Views.Dialogs;
|
||
|
||
public partial class DeviceDialog : ContentDialog
|
||
{
|
||
private const int ContentAreaMaxWidth = 1000;
|
||
private const int ContentAreaMaxHeight = 800;
|
||
|
||
public DeviceDialog()
|
||
{
|
||
InitializeComponent();
|
||
this.Opened += OnOpened;
|
||
|
||
}
|
||
|
||
|
||
private void OnOpened(ContentDialog sender, ContentDialogOpenedEventArgs args)
|
||
{
|
||
//<2F>ĶԻ<C4B6><D4BB><EFBFBD><EFBFBD><EFBFBD><EFBFBD>ݵ<EFBFBD><DDB5><EFBFBD><EFBFBD><EFBFBD>Ⱥ<EFBFBD><C8BA><EFBFBD><EFBFBD>߶<EFBFBD>
|
||
var backgroundElementBorder = VisualTreeFinder.FindVisualChildByName<Border>(this, "BackgroundElement");
|
||
backgroundElementBorder.MaxWidth = ContentAreaMaxWidth;
|
||
backgroundElementBorder.MaxWidth = ContentAreaMaxHeight;
|
||
|
||
}
|
||
|
||
} |