我正在创建一个自定义日期选择器,我有一个文本框,一旦点击它就会在弹出窗口中打开一个日历。 我想要做的是更改弹出窗口的大小,以便显示我的整个日历,但我无法改变它...,我尝试使用高度,宽度,最小高度,最小宽度...但它没有不行,弹出窗口继续以固定大小显示。
问题是我的弹出窗口的父属性没有被评估,因为它有表达式问题(根据调试器),所以我确定我的弹出窗口的父窗口不是主屏幕(比如布局网格)。
我如何让我的弹出窗口在特定的上下文中打开? 我的代码的这部分不是XAML,它只是C#代码,它看起来像:
using System;
using System.Net;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Documents;
using System.Windows.Ink;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Animation;
using System.Windows.Shapes;
using System.Windows.Controls.Primitives;
namespace CalendarBranch.components
{
public class wpDatePicker:TextBox
{
private CalendarPopup calendar;
private Popup popup;
public wpDatePicker()
{
this.calendar = new CalendarPopup();
this.popup = new Popup();
this.popup.Child = this.calendar;
this.popup.Margin = new Thickness(0);
this.MouseLeftButtonUp += new MouseButtonEventHandler(wpDatePicker_MouseLeftButtonUp);
this.calendar.onDateSelect += new EventHandler(onDateSelected);
this.IsReadOnly = true;
}
protected void wpDatePicker_MouseLeftButtonUp(object sender, MouseButtonEventArgs e)
{
this.popup.Height = this.calendar.Height;
this.popup.Width = this.calendar.Width;
this.popup.HorizontalAlignment = HorizontalAlignment.Center;
this.popup.VerticalAlignment = VerticalAlignment.Center;
this.popup.HorizontalOffset = 0;
this.popup.VerticalOffset = 0;
this.popup.MinHeight = this.calendar.Height;
this.popup.MinWidth = this.calendar.Width;
this.popup.IsOpen = true;
}
private void onDateSelected(Object sender, EventArgs ea) {
this.Text = this.calendar.SelectedValue.ToShortDateString();
this.popup.IsOpen = false;
}
}
}
PS:类Calendar只是一个UserControl,它包含一个包含多个列的网格,HyperLinkButtons和TextBlocks,所以没什么特别的。
提前谢谢你们;)
干杯 米卢德B.
答案 0 :(得分:0)
弹出控件调整自身大小以适应其中的内容。例如,如果将Popup的子项设置为StackPanel,并将width / height设置为100,则弹出窗口将为100x100。
因此,设置尺寸不是弹出窗口,而是设置内部面板非常重要。尝试将内容包装到堆栈面板中并在那里指定必要的宽度/高度。