Skip to content

Commit

Permalink
Fix image paths
Browse files Browse the repository at this point in the history
  • Loading branch information
jfversluis committed Aug 30, 2022
1 parent e74b65e commit 40b7066
Show file tree
Hide file tree
Showing 32 changed files with 37 additions and 37 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -140,7 +140,7 @@
<para>The following image shows the AbsoluteLayout demo from the <format type="text/html"><a href="https://developer.xamarin.com/samples/tag/Microsoft.Maui.Controls/" target="_blank">FormsGallery</a></format> sample.
</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/AbsoluteLayout.TripleScreenShot.png" />
<img href="_images/AbsoluteLayout.TripleScreenShot.png" />
</para>
<example>
<para>XAML for Microsoft.Maui.Controls supports the following attached properties for the <see cref="T:Microsoft.Maui.Controls.AbsoluteLayout" /> class:</para>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
<remarks>
<para>This control gives a visual clue to the user that something is happening, without information about its progress.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ActivityIndicator.TripleScreenShot.png" />
<img href="_images/ActivityIndicator.TripleScreenShot.png" />
</para>
<example>
<para>The example below creates a red activity indicator that is animated to imply that an activity is ongoing:</para>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/BoxView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ namespace FormsGallery
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/BoxView.TripleScreenShot.png" />
<img href="_images/BoxView.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/CarouselPage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ MainPage = new CarouselPage {
</example>
<block subset="none" type="note">When embedding a CarouselPage into a <see cref="P:Microsoft.Maui.Controls.FlyoutPage.Detail" />, application developers should set <see cref="P:Microsoft.Maui.Controls.FlyoutPage.IsGestureEnabled" /> to <see langword="false" /> to prevent gesture conflicts between the CarouselPage and MasterDetailPage.</block>
<para>
<img href="~/Microsoft.Maui.Controls/_images/CarouselPage.TripleScreenShot.png" />
<img href="_images/CarouselPage.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Cell.xml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
</list>
<para>The various subclasses are shown in the following image:</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Cell.Gallery.png" />
<img href="_images/Cell.Gallery.png" />
</para>
<example>
<code lang="csharp lang-csharp"><![CDATA[
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/ContentView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ MainPage = new ContentPage () {
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ContentView.TripleScreenShot.png" />
<img href="_images/ContentView.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/DatePicker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@
<remarks>
<para>The visual representation of a DatePicker is very similar to the one of <see cref="T:Microsoft.Maui.Controls.Entry" />, except that a special control for picking a date appears in place of a keyboard.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/DatePicker.TripleScreenShot.png" />
<img href="_images/DatePicker.TripleScreenShot.png" />
</para>
<example>
<para>The example below creates a working <see cref="T:Microsoft.Maui.Controls.DatePicker" /> that displays the current date and allows the user to select a date between the specified ranges. The value for the <see cref="P:Microsoft.Maui.Controls.DatePicker.Date" /> property is specified with the <c>x:Static</c> markup extension, and the <see cref="P:Microsoft.Maui.Controls.DatePicker.MinimumDate" /> and <see cref="P:Microsoft.Maui.Controls.DatePicker.MaximumDate" /> properties are specified by calling the <see cref="M:System.DateTime.Parse*" /> method with the <c>x:FactoryMethod</c> and <x>x:Arguments</x> tags. <block type="note">The example below requires a namespace declaration in the root <c>ContentPage</c> or <c>ContentView</c> tags. In particular, <c>xmlns:sys="clr-namespace:System;assembly=mscorlib"</c> must appear in the attribute list for the root element, so that the XAML parser can resolve the name, <c>sys:DateTime</c>.</block></para>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Editor.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<remarks>
<para>For single line entries, see <see cref="T:Microsoft.Maui.Controls.Entry" />.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Editor.TripleScreenShot.png" />
<img href="_images/Editor.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Entry.xml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ View CreateLoginForm ()
<para>The FormsGallery sample, which can be found on the <format type="text/html"><a href="https://developer.xamarin.com/samples/tag/Microsoft.Maui.Controls/" target="_blank">Sample Applications</a></format> page, has an EntryDemoPage.cs file. This file contains a more complete example.</para>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Entry.TripleScreenShot.png" />
<img href="_images/Entry.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/EntryCell.xml
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@ namespace FormsGallery
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/EntryCell.TripleScreenShot.png" />
<img href="_images/EntryCell.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
12 changes: 6 additions & 6 deletions src/Controls/docs/Microsoft.Maui.Controls/FlexLayout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@
<remarks>
<para>This property behaves similarly to <see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignItems" />, but applies to how entire rows or columns are aligned, not individual elements. The below image illustrates three different <see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignContent" /> values working on wrapped rows. The iOS screenshot shows <see cref="F:Microsoft.Maui.Controls.FlexAlignContent.SpaceBetween" />, the Android screenshot shows <see cref="F:Microsoft.Maui.Controls.FlexAlignContent.SpaceAround" />, and the UWP screenshot shows <see cref="F:Microsoft.Maui.Controls.FlexAlignContent.SpaceEvenly" />.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ExperimentAlignContent2-Large.png" />
<img href="_images/ExperimentAlignContent2-Large.png" />
</para>
</remarks>
</Docs>
Expand Down Expand Up @@ -105,7 +105,7 @@
<remarks>
<para>The following image shows the options for <see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignItems" /> with <see cref="P:Microsoft.Maui.Controls.FlexLayout.Direction" /> set to <see cref="F:Microsoft.Maui.Controls.FlexDirection.Column" /> and <see cref="P:Microsoft.Maui.Controls.FlexLayout.JustifyContent" /> set to <see cref="F:Microsoft.Maui.Controls.FlexJustify.Start" />:</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/FlexAlign.All.png" />
<img href="_images/FlexAlign.All.png" />
</para>
</remarks>
</Docs>
Expand Down Expand Up @@ -187,7 +187,7 @@
<remarks>
<para>The following image shows the options for <see cref="P:Microsoft.Maui.Controls.FlexLayout.Direction" /> with <see cref="P:Microsoft.Maui.Controls.FlexLayout.JustifyContent" /> set to <see cref="F:Microsoft.Maui.Controls.FlexJustify.Start" /> and <see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignItems" /> set to <see cref="F:Microsoft.Maui.Controls.FlexAlignItems.Stretch" />:</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/FlexDirection.All.png" />
<img href="_images/FlexDirection.All.png" />
</para>
</remarks>
</Docs>
Expand Down Expand Up @@ -370,7 +370,7 @@
<remarks>
<para>The following image shows options for <see cref="P:Microsoft.Maui.Controls.FlexLayout.JustifyContent" /> when <see cref="P:Microsoft.Maui.Controls.FlexLayout.Direction" /> is set to <see cref="F:Microsoft.Maui.Controls.FlexDirection.Column" /> and <see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignItems" /> is set to <see cref="F:Microsoft.Maui.Controls.FlexAlignItems.Stretch" />:</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/FlexJustify.All.png" />
<img href="_images/FlexJustify.All.png" />
</para>
</remarks>
</Docs>
Expand Down Expand Up @@ -598,7 +598,7 @@
<remarks>
<para>The following image shows the effect of <c>FlexLayout.SetAlignSelf(c, FlexAlignSelf.Start);</c> on a layout with<see cref="P:Microsoft.Maui.Controls.FlexLayout.AlignItems" /> value of <see cref="F:Microsoft.Maui.Controls.FlexAlignItems.Stretch" />: </para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/FlexLayout.SetAlignSelf.png" />
<img href="_images/FlexLayout.SetAlignSelf.png" />
</para>
</remarks>
</Docs>
Expand Down Expand Up @@ -679,7 +679,7 @@
<para>Multiple elements may have the same ordering priority, in which case they will appear in the order in which they occur in the <see cref="P:Microsoft.Maui.Controls.Layout`1.Children" /> list. By default, the value of <see cref="M:Microsoft.Maui.Controls.FlexLayout.GetOrder(Microsoft.Maui.Controls.BindableObject)" /> is 0.</para>
<para>For instance, if 3 children <c>a</c>, <c>b</c>, and <c>c</c> are added in order, and the developer wishes <c>c</c> to appear in the middle, the proper code is <c>FlexLayout.SetOrder(b, 1)</c>. (A developer mistaking order priority for an index might wrongly expect <c>FlexLayout.SetOrder(c, 1)</c> to work, but as <c>a</c> and <c>b</c> will still have order priority <c>0</c>, the elements in that case would still layout in the sequence <c>a, b, c</c>.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/FlexLayout.SetOrder.png" />
<img href="_images/FlexLayout.SetOrder.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Frame.xml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Frame.iOS_Android_UWP.png" />
<img href="_images/Frame.iOS_Android_UWP.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Grid.xml
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,7 @@ namespace FormsGallery
</example>
<para>The following shows Grids on the various platforms:</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Grid.TripleScreenShot.png" />
<img href="_images/Grid.TripleScreenShot.png" />
</para>
<para>It is convenient for the <see cref="T:Microsoft.Maui.Controls.Grid" /> layout class to store row and column indices of each of its child elements. Additionally, when a <see cref="T:Microsoft.Maui.Controls.View" /> element is laid out with a grid, application developers can access and change the child's position and span from the child itself by using the <see cref="M:Microsoft.Maui.Controls.Grid.GetRow(Microsoft.Maui.Controls.BindableObject)" />, <see cref="M:Microsoft.Maui.Controls.Grid.SetRow(Microsoft.Maui.Controls.BindableObject,System.Int32)" />, <see cref="M:Microsoft.Maui.Controls.Grid.GetRowSpan(Microsoft.Maui.Controls.BindableObject)" />, <see cref="M:Microsoft.Maui.Controls.Grid.SetRowSpan(Microsoft.Maui.Controls.BindableObject,System.Int32)" /> static methods, and the equivalent static methods for columns and column spans.</para>
<para>The documentation for the following <see cref="T:Microsoft.Maui.Controls.Grid" /> member methods contains XAML syntax examples:
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/ImageCell.xml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ namespace FormsGallery
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ImageCell.TripleScreenShot.png" />
<img href="_images/ImageCell.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Label.xml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@
<remarks>
<para>A Label is used to display single-line text elements as well as multi-line blocks of text.</para>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Label.TripleScreenShot.png" />
<img href="_images/Label.TripleScreenShot.png" />
</para>
<para>The following example, adapted from the default Microsoft.Maui.Controls solution, shows a basic use:</para>
<example>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/ListView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@
<summary>An <see cref="T:Microsoft.Maui.Controls.ItemsView`1" /> that displays a collection of data as a vertical list.</summary>
<remarks>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ListView.TripleScreenShot.png" />
<img href="_images/ListView.TripleScreenShot.png" />
</para>
<para>The following example shows a basic use:</para>
<example>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/OpenGLView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,7 @@ namespace opengl
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/OpenGLView.Example.png" />
<img href="_images/OpenGLView.Example.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Picker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ namespace FormsGallery
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Picker.TripleScreenShot.png" />
<img href="_images/Picker.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/ProgressBar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ Debug.WriteLine ("Animation completed");
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ProgressBar.TripleScreenShot.png" />
<img href="_images/ProgressBar.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/ScrollView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ MainPage = new ContentPage
</example>
<block type="note">Application developers should not nest one <see cref="T:Microsoft.Maui.Controls.ScrollView" /> within another. Additionally, they should refrain from nesting them other elements that can scroll, such as <see cref="T:Microsoft.Maui.Controls.WebView" />.</block>
<para>
<img href="~/Microsoft.Maui.Controls/_images/ScrollView.TripleScreenShot.png" />
<img href="_images/ScrollView.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/SearchBar.xml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ public class App : Application
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/SearchBar.TripleScreenShot.png" />
<img href="_images/SearchBar.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -958,7 +958,7 @@
<summary>The <see cref="T:Microsoft.Maui.Controls.DataTemplate" /> to apply to each item in <see cref="P:Microsoft.Maui.Controls.SearchHandler.ItemsSource" />.</summary>
<value>To be added.</value>
<remarks>
<para>For example, to create the style shown here: <img src="~/Microsoft.Maui.Controls/_images/search-results-template.png" />, developers could use either the following XAML or C#:</para>
<para>For example, to create the style shown here: <img src="_images/search-results-template.png" />, developers could use either the following XAML or C#:</para>
<example>
<code lang="XAML"><![CDATA[<ContentPage ...
xmlns:controls="clr-namespace:Xaminals.Controls">
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Slider.xml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
<summary>A <see cref="T:Microsoft.Maui.Controls.View" /> control that inputs a linear value.</summary>
<remarks>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Slider.TripleScreenShot.png" />
<img href="_images/Slider.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/StackLayout.xml
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ StackLayout stackLayout = new StackLayout
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/StackLayout.TripleScreenShot.png" />
<img href="_images/StackLayout.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Stepper.xml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Stepper.TripleScreenShot.png" />
<img href="_images/Stepper.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/Switch.xml
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ namespace FormsGallery
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/Switch.TripleScreenShot.png" />
<img href="_images/Switch.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/SwitchCell.xml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ namespace FormsGallery
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/SwitchCell.TripleScreenShot.png" />
<img href="_images/SwitchCell.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/TabbedPage.xml
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ class TabbedPageDemoPage2 : TabbedPage
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/TabbedPage.TripleScreenShot.png" />
<img href="_images/TabbedPage.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/TableView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ public class App : Application
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/TableView.TripleScreenShot.png" />
<img href="_images/TableView.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/TextCell.xml
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ public class App : Application
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/TextCell.TripleScreenShot.png" />
<img href="_images/TextCell.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/TimePicker.xml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ var beeroclock = new TimePicker () { Time = new TimeSpan (17,0,0) };
]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/TimePicker.TripleScreenShot.png" />
<img href="_images/TimePicker.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down
2 changes: 1 addition & 1 deletion src/Controls/docs/Microsoft.Maui.Controls/WebView.xml
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ namespace FormsGallery
}]]></code>
</example>
<para>
<img href="~/Microsoft.Maui.Controls/_images/WebView.TripleScreenShot.png" />
<img href="_images/WebView.TripleScreenShot.png" />
</para>
</remarks>
</Docs>
Expand Down

0 comments on commit 40b7066

Please sign in to comment.