Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
Grid.Row="1"
TextWrapping="Wrap"
Text="To use a custom model, convert it to a WindowsML-compatible format using the AI Toolkit conversion tool. Note: Currently, only select models are supported for conversion in AI Toolkit, with additional models coming soon." />
<controls:WrapPanel Orientation="Horizontal" HorizontalSpacing="12" VerticalSpacing="12">
<controls:WrapPanel Orientation="Horizontal" ItemSpacing="12" LineSpacing="12">
<Button
x:Name="OpenAIToolkitButton"
Click="OpenAIToolkitButton_Click"
Expand Down
2 changes: 1 addition & 1 deletion AIDevGallery/MainWindow.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
using Microsoft.UI.Xaml;
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media;
using Microsoft.Windows.AI.Search.Experimental.AppContentIndex;
using Microsoft.Windows.Search.AppContentIndex;
using System;
using System.Collections.Generic;
using System.ComponentModel;
Expand Down
2 changes: 1 addition & 1 deletion AIDevGallery/Pages/APIs/APIOverview.xaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@
ItemsSource="{x:Bind wcrAPIs, Mode=OneWay}"
SelectionMode="None">
<ItemsView.Layout>
<FlowLayout MinColumnSpacing="12" MinRowSpacing="12" />
<FlowLayout MinItemSpacing="12" LineSpacing="12" />
</ItemsView.Layout>
<ItemsView.ItemTemplate>
<DataTemplate x:DataType="models:ApiDefinition">
Expand Down
2 changes: 1 addition & 1 deletion AIDevGallery/Samples/WCRAPIs/AppIndexCapability.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
using AIDevGallery.Models;
using AIDevGallery.Samples.Attributes;
using Microsoft.UI.Xaml.Navigation;
using Microsoft.Windows.AI.Search.Experimental.AppContentIndex;
using Microsoft.Windows.Search.AppContentIndex;
using System;
using System.Collections.Generic;
using System.Diagnostics;
Expand Down
2 changes: 1 addition & 1 deletion AIDevGallery/Samples/WCRAPIs/KnowledgeRetrieval.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
using Microsoft.UI.Xaml.Input;
using Microsoft.UI.Xaml.Media;
using Microsoft.UI.Xaml.Navigation;
using Microsoft.Windows.AI.Search.Experimental.AppContentIndex;
using Microsoft.Windows.Search.AppContentIndex;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
2 changes: 1 addition & 1 deletion AIDevGallery/Samples/WCRAPIs/SemanticSearch.xaml.cs
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
using Microsoft.UI.Xaml.Controls;
using Microsoft.UI.Xaml.Media.Imaging;
using Microsoft.UI.Xaml.Navigation;
using Microsoft.Windows.AI.Search.Experimental.AppContentIndex;
using Microsoft.Windows.Search.AppContentIndex;
using System;
using System.Collections.Generic;
using System.Collections.ObjectModel;
Expand Down
2 changes: 1 addition & 1 deletion Directory.Packages.props
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
<PackageVersion Include="CommunityToolkit.WinUI.Extensions" Version="8.2.250402" />
<PackageVersion Include="CommunityToolkit.WinUI.Controls.Sizers" Version="8.2.250402" />
<PackageVersion Include="Microsoft.Graphics.Win2D" Version="1.3.2" />
<PackageVersion Include="Microsoft.WindowsAppSDK" Version="2.0.0-experimental3" />
<PackageVersion Include="Microsoft.WindowsAppSDK" Version="2.0.0-experimental5" />
<PackageVersion Include="Microsoft.Windows.SDK.BuildTools" Version="10.0.26100.6584" />
<PackageVersion Include="Microsoft.Windows.CsWin32" Version="0.3.205" />
<PackageVersion Include="System.Drawing.Common" Version="9.0.9" />
Expand Down
Loading