second commit

This commit is contained in:
Andrey 2025-03-05 10:47:46 +03:00
parent a40d5e07cb
commit 811c9092b6
9 changed files with 54 additions and 4 deletions

3
.gitignore vendored Normal file
View File

@ -0,0 +1,3 @@
/.vs
/MauiApp1/bin
/MauiApp1/obj

Binary file not shown.

View File

@ -1,7 +1,12 @@
{ {
"Version": 1, "Version": 1,
"WorkspaceRootPath": "D:\\ip-470\\MauiApp1\\", "WorkspaceRootPath": "D:\\ip-470\\MauiApp1\\",
"Documents": [], "Documents": [
{
"AbsoluteMoniker": "D:0:0:{FF717829-6BB8-4818-9F10-F8A21D0D89E4}|MauiApp1\\MauiApp1.csproj|d:\\ip-470\\mauiapp1\\mauiapp1\\newcontent1.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}",
"RelativeMoniker": "D:0:0:{FF717829-6BB8-4818-9F10-F8A21D0D89E4}|MauiApp1\\MauiApp1.csproj|solutionrelative:mauiapp1\\newcontent1.xaml||{F11ACC28-31D1-4C80-A34B-F4E09D3D753C}"
}
],
"DocumentGroupContainers": [ "DocumentGroupContainers": [
{ {
"Orientation": 0, "Orientation": 0,
@ -9,7 +14,7 @@
"DocumentGroups": [ "DocumentGroups": [
{ {
"DockedWidth": 200, "DockedWidth": 200,
"SelectedChildIndex": -1, "SelectedChildIndex": 12,
"Children": [ "Children": [
{ {
"$type": "Bookmark", "$type": "Bookmark",
@ -58,6 +63,19 @@
{ {
"$type": "Bookmark", "$type": "Bookmark",
"Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}" "Name": "ST:0:0:{1c4feeaa-4718-4aa9-859d-94ce25d182ba}"
},
{
"$type": "Document",
"DocumentIndex": 0,
"Title": "NewContent1.xaml",
"DocumentMoniker": "D:\\ip-470\\MauiApp1\\MauiApp1\\NewContent1.xaml",
"RelativeDocumentMoniker": "MauiApp1\\NewContent1.xaml",
"ToolTip": "D:\\ip-470\\MauiApp1\\MauiApp1\\NewContent1.xaml",
"RelativeToolTip": "MauiApp1\\NewContent1.xaml",
"ViewState": "AQIAAAAAAAAAAAAAAAAAAAsAAAAAAAAA",
"Icon": "ae27a6b0-e345-4288-96df-5eaf394ee369.003549|",
"WhenOpened": "2025-03-05T07:46:36.504Z",
"EditorCaption": ""
} }
] ]
}, },

2
MauiApp1/.gitignore vendored
View File

@ -1,2 +0,0 @@
/bin
/obj

View File

@ -62,4 +62,10 @@
<PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" /> <PackageReference Include="Microsoft.Extensions.Logging.Debug" Version="8.0.0" />
</ItemGroup> </ItemGroup>
<ItemGroup>
<MauiXaml Update="NewContent1.xaml">
<Generator>MSBuild:Compile</Generator>
</MauiXaml>
</ItemGroup>
</Project> </Project>

View File

@ -6,6 +6,11 @@
<ActiveDebugProfile>Windows Machine</ActiveDebugProfile> <ActiveDebugProfile>Windows Machine</ActiveDebugProfile>
</PropertyGroup> </PropertyGroup>
<ItemGroup> <ItemGroup>
<MauiXaml Update="NewContent1.xaml">
<SubType>Designer</SubType>
</MauiXaml>
</ItemGroup>
<ItemGroup>
<None Update="App.xaml"> <None Update="App.xaml">
<SubType>Designer</SubType> <SubType>Designer</SubType>
</None> </None>

11
MauiApp1/NewContent1.xaml Normal file
View File

@ -0,0 +1,11 @@
<?xml version="1.0" encoding="utf-8" ?>
<ContentView xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="MauiApp1.NewContent1">
<VerticalStackLayout>
<Label
Text="Welcome to .NET MAUI!"
VerticalOptions="Center"
HorizontalOptions="Center" />
</VerticalStackLayout>
</ContentView>

View File

@ -0,0 +1,9 @@
namespace MauiApp1;
public partial class NewContent1 : ContentView
{
public NewContent1()
{
InitializeComponent();
}
}