2

我的应用程序的某些元素具有自定义大小调整事件,它们都有效。但是,他们被一种情况搞砸了:

当将鼠标悬停在窗口的边框上时,光标变成了调整大小的句柄,并且您单击(但不要拖动),元素的大小调整不正确,并且我的处理程序没有被触发。

我一直在寻找这样的事件,但找不到任何匹配的东西。我想简单地为这个事件创建一个处理程序,以避免调整我的元素大小时出现故障。

我正在使用 C#/WPF 和 .NET 4

窗口的 xml:

<Window x:Class="XHealth.MainWindow"
    Name="mainWindow"
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
    xmlns:local="clr-namespace:DataGridTemplateSample"
    xmlns:XH="clr-namespace:XHealth"
    xmlns:toolkit="http://schemas.microsoft.com/wpf/2008/toolkit"

    SizeChanged="update_size"
    Title="XHealth"  Loaded="Window_Loaded" WindowState="Normal" WindowStartupLocation="CenterScreen" mc:Ignorable="d" xmlns:d="http://schemas.microsoft.com/expression/blend/2008" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"  SizeToContent="WidthAndHeight" WindowStyle="ThreeDBorderWindow"  MinWidth="650" MinHeight="648" Width="Auto"  VerticalAlignment="Top" DataContext="{Binding}" PreviewKeyDown="Window_KeyDown">

事件处理程序:

public void update_size(object sender, RoutedEventArgs e )
{
        if (resultsTab.IsSelected){
          Grid.SetRowSpan(dataGrid1, 2);
          Grid.SetRowSpan(dataGrid2, 2);
        }
}

此处理程序按预期执行,但在未拖动调整大小手柄时不会触发,这使我相信单击调整大小手柄是一个不同的事件。

此外,这只发生一次 - 一旦我的调整大小处理程序生效,单击调整大小处理程序无效。

4

1 回答 1

2

Converting my comment into an answer:

That could be resolved by not putting any * in the Grid.

Also, if the Window is set to SizeToContent, you should only SizeToContent=Width to prevent the window from scaling endlessly.

Remove all the event handlers stuff, that's hack.

于 2013-06-04T17:07:48.297 回答