-
-
Save SamTh3D3v/33911f35be38d5b4175b6c6378525264 to your computer and use it in GitHub Desktop.
Moh
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <Window x:Class="WpfApplication1.MainWindow" | |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" | |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" | |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" | |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" | |
| xmlns:local="clr-namespace:WpfApplication1" | |
| mc:Ignorable="d" | |
| Title="MainWindow" Height="350" Width="525"> | |
| <Window.Resources> | |
| <Style TargetType="{x:Type ListViewItem}"> | |
| <Style.Setters> | |
| <EventSetter Event="MouseLeftButtonUp" Handler="ListViewMenu_PreviewMouseLeftButtonDown"/> | |
| </Style.Setters> | |
| </Style> | |
| </Window.Resources> | |
| <Grid> | |
| <ListView x:Name="ListViewMenu" ScrollViewer.HorizontalScrollBarVisibility="Disabled" Foreground="White"> | |
| <ListViewItem x:Name="vv" Height="60"> | |
| <StackPanel Orientation="Horizontal" > | |
| <!--<materialDesign:PackIcon Kind="ViewDashboard" Width="25" Height="25" Margin="10" VerticalAlignment="Center" />--> | |
| <TextBlock Text="Home" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| <ListViewItem Height="60"> | |
| <StackPanel Orientation="Horizontal"> | |
| <!--<materialDesign:PackIcon Kind="Account" Width="25" Height="25" Margin="10" VerticalAlignment="Center"/>--> | |
| <TextBlock Text="Patients" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| <ListViewItem Height="60"> | |
| <StackPanel Orientation="Horizontal"> | |
| <!--<materialDesign:PackIcon Kind="FileDocumentOutline" Width="25" Height="25" Margin="10" VerticalAlignment="Center"/>--> | |
| <TextBlock Text="Ordonances" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| <ListViewItem Height="60"> | |
| <StackPanel Orientation="Horizontal"> | |
| <!--<materialDesign:PackIcon Kind="CalendarClock" Width="25" Margin="10" Height="25" VerticalAlignment="Center"/>--> | |
| <TextBlock Text="Ticket" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| <ListViewItem Height="60"> | |
| <StackPanel Orientation="Horizontal"> | |
| <!--<materialDesign:PackIcon Kind="Pill" Width="25" Height="25" Margin="10" VerticalAlignment="Center"/>--> | |
| <TextBlock Text="Médicaments" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| <ListViewItem Height="60"> | |
| <StackPanel Orientation="Horizontal"> | |
| <!--<materialDesign:PackIcon Kind="About" Width="25" Height="25" Margin="10" VerticalAlignment="Center"/>--> | |
| <TextBlock Text="About" VerticalAlignment="Center" Margin="20 10"/> | |
| </StackPanel> | |
| </ListViewItem> | |
| </ListView> | |
| </Grid> | |
| </Window> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment