-
Notifications
You must be signed in to change notification settings - Fork 78
Description
Discussed in #421
Originally posted by WillyWoe April 15, 2023
My csproj:
<Project Sdk="Microsoft.NET.Sdk">
<PropertyGroup>
<OutputType>WinExe</OutputType>
<TargetFramework>net6.0-windows10.0.19041.0</TargetFramework>
<TargetPlatformMinVersion>10.0.17763.0</TargetPlatformMinVersion>
<RootNamespace>LabsTests</RootNamespace>
<ApplicationManifest>app.manifest</ApplicationManifest>
<Platforms>x86;x64;arm64</Platforms>
<RuntimeIdentifiers>win10-x86;win10-x64;win10-arm64</RuntimeIdentifiers>
<PublishProfile>win10-$(Platform).pubxml</PublishProfile>
<UseWinUI>true</UseWinUI>
<EnableMsixTooling>true</EnableMsixTooling>
</PropertyGroup>
<ItemGroup>
<Content Include="Assets\SplashScreen.scale-200.png" />
<Content Include="Assets\LockScreenLogo.scale-200.png" />
<Content Include="Assets\Square150x150Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.scale-200.png" />
<Content Include="Assets\Square44x44Logo.targetsize-24_altform-unplated.png" />
<Content Include="Assets\StoreLogo.png" />
<Content Include="Assets\Wide310x150Logo.scale-200.png" />
</ItemGroup>
<ItemGroup>
<PackageReference Include="CommunityToolkit.Labs.WinUI.TokenView" Version="0.0.4" />
<PackageReference Include="Microsoft.WindowsAppSDK" Version="1.2.230118.102" />
<PackageReference Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.22621.1" />
<Manifest Include="$(ApplicationManifest)" />
</ItemGroup>
<!--
Defining the "Msix" ProjectCapability here allows the Single-project MSIX Packaging
Tools extension to be activated for this project even if the Windows App SDK Nuget
package has not yet been restored.
-->
<ItemGroup Condition="'$(DisableMsixProjectCapabilityAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<ProjectCapability Include="Msix" />
</ItemGroup>
<!--
Defining the "HasPackageAndPublishMenuAddedByProject" property here allows the Solution
Explorer "Package and Publish" context menu entry to be enabled for this project even if
the Windows App SDK Nuget package has not yet been restored.
-->
<PropertyGroup Condition="'$(DisableHasPackageAndPublishMenuAddedByProject)'!='true' and '$(EnableMsixTooling)'=='true'">
<HasPackageAndPublishMenu>true</HasPackageAndPublishMenu>
</PropertyGroup>
</Project>
My xaml:
<Window
x:Class="LabsTests.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="using:LabsTests"
xmlns:labs="using:CommunityToolkit.Labs.WinUI"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid>
<labs:TokenView AllowDrop="True"
CanReorderItems="True"
IsWrapped="True"
SelectedIndex="2"
SelectionMode="Single">
<labs:TokenItem Content="All" />
<labs:TokenItem Content="Apps">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Work">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Documents">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Web">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Settings">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="People">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Folders">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
<labs:TokenItem Content="Photos">
<labs:TokenItem.Icon>
<FontIcon Glyph="" />
</labs:TokenItem.Icon>
</labs:TokenItem>
</labs:TokenView>
</Grid>
</Window>and this is the exception:
Error HRESULT E_FAIL has been returned from a call to a COM component.
at WinRT.ExceptionHelpers.g__Throw|20_0(Int32 hr)
at CommunityToolkit.WinUI.UI.Controls.WrapPanel.MeasureOverride(Size availableSize)
at Microsoft.UI.Xaml.FrameworkElement.Microsoft.UI.Xaml.IFrameworkElementOverrides.MeasureOverride(Size availableSize)
at ABI.Microsoft.UI.Xaml.IFrameworkElementOverrides.Do_Abi_MeasureOverride_0(IntPtr thisPtr, Size availableSize, Size* result)
--- End of stack trace from previous location ---
at WinRT.ExceptionHelpers.g__Throw|20_0(Int32 hr)
at Microsoft.UI.Xaml.FrameworkElement.MeasureOverride(Size availableSize)
at Microsoft.UI.Xaml.FrameworkElement.Microsoft.UI.Xaml.IFrameworkElementOverrides.MeasureOverride(Size availableSize)
at ABI.Microsoft.UI.Xaml.IFrameworkElementOverrides.Do_Abi_MeasureOverride_0(IntPtr thisPtr, Size availableSize, Size* result)
What am I doing wrong?
Metadata
Metadata
Assignees
Labels
Type
Projects
Status