私はこれは前に依頼されている知っているが、私はタイトルバーをWPFウィンドウで消すには?
- How to create a WPF Window without a border that can be resized via a grip only?
- How to remove the title bar from a window but keep the border
とどちらも仕事@答えを試してみた、タイトルバーのテキストがそこに座っていると私のグリッドを移動することができませんでしイムグリッドがウィンドウ全体を占めるように、ウィンドウの最上部まで移動します。私はWPFをかなり新しくしていますし、いくつかのことでうまくやっていますが、これには感謝しています。
XAMLウィンドウのために:
<Window x:Class="PlayWPF.TimerSlideWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="" Height="95" Width="641" WindowStyle="None"
ResizeMode="CanResize" AllowsTransparency="False">
<Grid HorizontalAlignment="Stretch" VerticalAlignment="Stretch">
<Slider Height="42" HorizontalAlignment="Left" Margin="10,14,0,0"
Name="sldTime" VerticalAlignment="Top" Width="495" />
<TextBox FontSize="18" Height="29" HorizontalAlignment="Left"
Margin="510,10,0,0" Name="txtTime" Text="00:00:00"
TextAlignment="Center" VerticalAlignment="Top" Width="93" />
</Grid>
</Window>
が返ってきます。 Imはこれを読むのが面倒です。 –
@HighCoreが言った....あなたがリンクした投稿のコードはうまく動作します。 –
'WindowStyle =" None "'はあなたが探していたものではありませんか? – Nolonar