This commit is contained in:
Bret Johnson 2021-10-09 23:30:11 -04:00
Родитель e02e5ab801
Коммит 1d3a5a9c91
3 изменённых файлов: 5 добавлений и 4 удалений

3
samples/WpfSamplesHost/WpfSamplesHost.csproj Normal file → Executable file
Просмотреть файл

@ -2,7 +2,8 @@
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>netcoreapp3.1</TargetFramework>
<TargetFramework>net6.0-windows</TargetFramework>
<Nullable>enable</Nullable>
<UseWPF>true</UseWPF>
</PropertyGroup>

Просмотреть файл

@ -1,7 +1,7 @@
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>netcoreapp3.1;net472</TargetFrameworks>
<TargetFrameworks>net6.0-windows;net472</TargetFrameworks>
<UseWPF>true</UseWPF>
<LangVersion>8.0</LangVersion>
<Nullable>enable</Nullable>

4
src/StandardUI/Controls/StandardUIControl.cs Normal file → Executable file
Просмотреть файл

@ -22,8 +22,8 @@ namespace Microsoft.StandardUI.Controls
public double MinWidth
{
get => _peer.MinWidth;
set => _peer.MinWidth = value;
get => _peer.MinWidth;
set => _peer.MinWidth = value;
}
public double MaxWidth