I am developing wpf applications. I want to remove expander circular icon. Below is my expander code. Thanks in advance.I also want to remove CornerRadius
<Expander x:Name="Expander" HorizontalAlignment="Right" FlowDirection="RightToLeft" Foreground="White" FontFamily="segoe_uilight" Width="200px" BorderBrush="#FF0A0909" BorderThickness="1,1,1,2" Background="#99080707" >
<Expander.Header>
<StackPanel Orientation="Horizontal">
<Canvas Height="22" Width="172px" VerticalAlignment="Bottom">
// here is some code
</Canvas>
</StackPanel>
</Expander.Header>
<!--<Expander.Content>
<TextBox Text="LoginUserName"></TextBox>
</Expander.Content>-->
<StackPanel Margin="10,4,0,0" >
<StackPanel Orientation="Horizontal" Height="35">
// Here is some code
</StackPanel>
<!--<Label Margin="4" Content="Logout" />-->
<!--<Button x:Name="btnLogout" Margin="4" Content="Logout" Click="btnLogout_Click_1"></Button>-->
<StackPanel Orientation="Horizontal" Height="35">
<Label x:Name="btnLogout" HorizontalAlignment="Left" Margin="60,5,0,0" Content="Logout" Foreground="White" FontFamily="segoe_uilight" BorderThickness="0" MouseUp="btnLogout_MouseUp">
</Label>
<Image Source="img\icons\logout.png" Height="20px" Width="20px" Margin="25,0,0,0"/>
</StackPanel>
</StackPanel>
</Expander>`