* feat: add ColumnWrapPanel. * feat: add Descriptions and DescriptionsItem controls * WIP: extract a LabeledContentControl for this particular need. * wip. * feat: setup demo. fix various initial status issue. * fix: fix a layout issue. * feat: improve demo. * feat: update demo. * fix: remove a redundant calculation. * feat: update per copilot feedback. * feat: add tests, fix a calculation issue. * feat: refactor to change the default label and value binding assignment logic. * feat: introduce orientation. * misc: format codes. * feat: clarify LabelPosition property. * feat: extract Font resources. * revert AvatarDemo. * feat: assign specific value to Font resources for testing. * misc: resolve copilot comment. --------- Co-authored-by: Zhang Dian <54255897+zdpcdt@users.noreply.github.com>
11 lines
185 B
C#
11 lines
185 B
C#
using Avalonia.Controls;
|
|
|
|
namespace Ursa.Demo.Pages;
|
|
|
|
public partial class DescriptionsDemo : UserControl
|
|
{
|
|
public DescriptionsDemo()
|
|
{
|
|
InitializeComponent();
|
|
}
|
|
} |