feat: 初始化NewLife Studio项目,完成基础框架与数据管理模块
何炳宏 authored at 2026-05-26 12:09:09
1.07 KiB
NewLife.Studio
<UserControl xmlns="https://github.com/avaloniaui"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             x:Class="NewLife.Studio.Modules.DataStudio.Views.ObjectTreeView">
    <Border BorderBrush="#E0E0E0" BorderThickness="1" Padding="4" CornerRadius="4">
        <Grid RowDefinitions="Auto,*">
            <TextBlock Grid.Row="0" Text="对象浏览器" FontWeight="Bold" Margin="0,0,0,4" />
            <TreeView Grid.Row="1" ItemsSource="{Binding Nodes}"
                      ScrollViewer.VerticalScrollBarVisibility="Auto">
                <TreeView.ItemTemplate>
                    <TreeDataTemplate ItemsSource="{Binding Children}">
                        <StackPanel Orientation="Horizontal" Spacing="4">
                            <TextBlock Text="{Binding Name}" />
                            <TextBlock Text="{Binding DataType}" FontSize="10" Foreground="Gray" />
                        </StackPanel>
                    </TreeDataTemplate>
                </TreeView.ItemTemplate>
            </TreeView>
        </Grid>
    </Border>
</UserControl>