-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCustomControls.csproj
More file actions
132 lines (127 loc) · 3.94 KB
/
Copy pathCustomControls.csproj
File metadata and controls
132 lines (127 loc) · 3.94 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
<Project Sdk="Microsoft.NET.Sdk.WindowsDesktop">
<PropertyGroup>
<TargetFrameworks>net45;netcoreapp3.1;net5.0-windows</TargetFrameworks>
<UseWPF>true</UseWPF>
<RootNamespace>hu.czompisoftware.customcontrols</RootNamespace>
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
<Company>Czompi Software</Company>
<Authors>Czompi</Authors>
<RepositoryType>git</RepositoryType>
<RepositoryUrl>https://github.com/CzompiSoftware/CustomControls</RepositoryUrl>
<Copyright>Czompi Software 2020</Copyright>
<Product>Czompi's CustomControls</Product>
<Version>1.3.5.3</Version>
<LangVersion>9.0</LangVersion>
<PackageReleaseNotes>1.1.0
- Added label
1.1.1
- Added label to the Resource Dictionary
1.1.2
- Fixed label alignment
1.1.3
- Changed the base Label color to Secondary from Success
1.1.4
- Changed the base Label color to LightGray from Secondary
1.1.5
- Label auto height fix
1.1.5.1
- Testing DragAndDrop #1
1.1.5.2
- Testing DragAndDrop #2
1.1.5.3
- Testing DragAndDrop #3
1.1.5.4
- Testing DragAndDrop #4
1.1.6
- Added CheckBox
1.1.6.1-10
- Fiddling with CheckBox display
1.1.6.11
- Playing with CheckBox geometry
1.1.6.12
- Playing with CheckBox geometry [Fixed]
1.1.6.13
- Playing with CheckBox geometry - 24x24 [Resized]
1.1.6.14
- CheckBox default font chaged
1.1.7.x
- Added ComboBox
1.1.8.0-2
- Added ScrollView
1.1.8.3-5
- Added IsMirroredDogEar for every object & fixed bugs related to it.
1.1.8.6
- Mirrored ComboBox ScrollView element corner cut
1.1.8.7
- Fixed mirrored view's corner cut render.
1.1.8.8
- Fixed DragAndDrop & All mirrored corner cuts render.
1.1.8.9-14
- Added Dock element for each object to easily placing them next each other.
1.1.9
- Added TextBox.
1.1.9.1
- Changed TextBox cursor to IBeam.
1.1.9.2
- Fixed TextBox.
1.2
- Added .NET Framework 3.5 & .NET Framework 4.5 support.
1.2.1
- Renamed keys for objects to be able to use them.
1.2.2
- Added ListBox and repaired some buggy items.
1.3
- Migrated hu.czompi. to hu.czompisoftware. package.
1.3.1
- Fixed CheckBox colors.
1.3.2
- PasswordTextBox added.
1.3.3
- Trying to fix PasswordTextBox
1.3.3.1
- Trying to fix PasswordTextBox
1.3.3.2
- PasswordTextBox fixed?!
1.3.4
- Added TabItem & TabControl.
1.3.4.1
- Forgot to set default color scheme.
1.3.4.2
- Added NuGet auto publish & .NET 5.0 support
1.3.5
- Fixed TextBox value handling
* PLANNED: Rewrite the way we handle coloring.
1.3.5.1
- Mirrored DogEar for `Button`s and fixed ScrollViewer's Centering content issue.
1.3.5.2
- The previous version was a mistake, I found the only control (ScrollViewer) that used a different clip style than the other controls. I fixed it now.
- Fixed most of the items (for ex ListBox needs to be fixed or removed[?]) and added them to CustomControls.Sample project
1.3.5.3
- *HOTFIX:* Fixed a missing Padding pass.</PackageReleaseNotes>
<Description>Custom WPF control objects.</Description>
</PropertyGroup>
<PropertyGroup Condition="'$(Configuration)|$(Platform)'=='Release|AnyCPU'">
<NuGetPublishType>remote</NuGetPublishType>
<NuGetPublishLocation>https://nuget.czompisoftware.hu/v3/index.json</NuGetPublishLocation>
</PropertyGroup>
<ItemGroup>
<PackageReference Include="SS.NuGet.Publish" Version="1.0.1912.22">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
<Resource Include="Resources\Fonts\MedievalSharp.ttf">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Fonts\Minecraftia-Regular.ttf">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
<Resource Include="Resources\Fonts\Comfortaa-Regular.ttf">
<CopyToOutputDirectory>Never</CopyToOutputDirectory>
</Resource>
</ItemGroup>
<ItemGroup>
<Page Update="Resources\check-solid_white.xaml">
<SubType>Designer</SubType>
</Page>
</ItemGroup>
</Project>