- c - 在位数组中找到第一个零
- linux - Unix 显示有关匹配两种模式之一的文件的信息
- 正则表达式替换多个文件
- linux - 隐藏来自 xtrace 的命令
我有一个用户控件,它有一个 DateTimePicker 覆盖单行文本框 (Tb)
覆盖 DateTimePicker 的文本部分。文本框 Tb(绿色)被锚定 (L T R B)。
调整用户控件大小时出现问题。
覆盖的日期时间选择器显示在文本 Tb 后面。
目前用户控件是 242(W) x 20(H) 。当控件的大小调整到 100(宽度)以下时会出现问题。
我尝试将 CustomFormat 设置为 ""的空白文本,但用户控件支持许多 datetimepicker 功能,因此这不是一个选项。
我尝试在用户控件上设置最小尺寸,但这也不起作用。
编辑:
该控件已在少数应用程序中使用。在这些应用程序中,最小控件的大小是 90X20,而我们现在设置的最小大小是 97x20。
VS 设计器是否会在更改后将现有控件的大小调整为 97x20?
如何实现这种效果(重新调整为 97x20)?
编辑 ****添加最小尺寸后的代码****
namespace WindowsFormsApplication1
{
partial class CDatePicker
{
private System.ComponentModel.IContainer components = null;
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Component Designer generated code
private void InitializeComponent()
{
this.splitContainer1 = new System.Windows.Forms.SplitContainer();
this.datepanel = new System.Windows.Forms.Panel();
this.datetxt = new System.Windows.Forms.TextBox();
this.dateTimePicker1 = new System.Windows.Forms.DateTimePicker();
this.timepanel = new System.Windows.Forms.Panel();
this.timetxt = new System.Windows.Forms.TextBox();
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).BeginInit();
this.splitContainer1.Panel1.SuspendLayout();
this.splitContainer1.Panel2.SuspendLayout();
this.splitContainer1.SuspendLayout();
this.datepanel.SuspendLayout();
this.timepanel.SuspendLayout();
this.SuspendLayout();
//
// splitContainer1
//
this.splitContainer1.Dock = System.Windows.Forms.DockStyle.Fill;
this.splitContainer1.Location = new System.Drawing.Point(0, 0);
this.splitContainer1.Name = "splitContainer1";
//
// splitContainer1.Panel1
//
this.splitContainer1.Panel1.Controls.Add(this.datepanel);
this.splitContainer1.Panel1MinSize = 105;
//
// splitContainer1.Panel2
//
this.splitContainer1.Panel2.Controls.Add(this.timepanel);
this.splitContainer1.Size = new System.Drawing.Size(236, 20);
this.splitContainer1.SplitterDistance = 178;
this.splitContainer1.SplitterWidth = 1;
this.splitContainer1.TabIndex = 0;
//
// datepanel
//
this.datepanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.datepanel.Controls.Add(this.datetxt);
this.datepanel.Controls.Add(this.dateTimePicker1);
this.datepanel.Location = new System.Drawing.Point(0, 0);
this.datepanel.Margin = new System.Windows.Forms.Padding(0);
this.datepanel.Name = "datepanel";
this.datepanel.Size = new System.Drawing.Size(175, 20);
this.datepanel.TabIndex = 0;
//
// datetxt
//
this.datetxt.BackColor = System.Drawing.Color.Gainsboro;
this.datetxt.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
this.datetxt.Location = new System.Drawing.Point(0, 0);
this.datetxt.MinimumSize = new System.Drawing.Size(60, 20);
this.datetxt.Name = "datetxt";
this.datetxt.Size = new System.Drawing.Size(71, 20);
this.datetxt.TabIndex = 3;
this.datetxt.Text = "date";
//
// dateTimePicker1
//
this.dateTimePicker1.Dock = System.Windows.Forms.DockStyle.Fill;
this.dateTimePicker1.Format = System.Windows.Forms.DateTimePickerFormat.Short;
this.dateTimePicker1.Location = new System.Drawing.Point(0, 0);
this.dateTimePicker1.Margin = new System.Windows.Forms.Padding(0);
this.dateTimePicker1.MinimumSize = new System.Drawing.Size(65, 20);
this.dateTimePicker1.Name = "dateTimePicker1";
this.dateTimePicker1.Size = new System.Drawing.Size(175, 20);
this.dateTimePicker1.TabIndex = 2;
this.dateTimePicker1.Value = new System.DateTime(2012, 11, 15, 0, 0, 0, 0);
//
// timepanel
//
this.timepanel.Controls.Add(this.timetxt);
this.timepanel.Dock = System.Windows.Forms.DockStyle.Fill;
this.timepanel.Location = new System.Drawing.Point(0, 0);
this.timepanel.Margin = new System.Windows.Forms.Padding(0);
this.timepanel.Name = "timepanel";
this.timepanel.Size = new System.Drawing.Size(57, 20);
this.timepanel.TabIndex = 0;
//
// timetxt
//
this.timetxt.Dock = System.Windows.Forms.DockStyle.Fill;
this.timetxt.Location = new System.Drawing.Point(0, 0);
this.timetxt.Name = "timetxt";
this.timetxt.Size = new System.Drawing.Size(57, 20);
this.timetxt.TabIndex = 1;
this.timetxt.Text = "time";
this.timetxt.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
//
// CDatePicker
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.AutoSize = true;
this.Controls.Add(this.splitContainer1);
this.MaximumSize = new System.Drawing.Size(236, 20);
this.MinimumSize = new System.Drawing.Size(100, 20);
this.Name = "CDatePicker";
this.Size = new System.Drawing.Size(236, 20);
this.splitContainer1.Panel1.ResumeLayout(false);
this.splitContainer1.Panel2.ResumeLayout(false);
((System.ComponentModel.ISupportInitialize)(this.splitContainer1)).EndInit();
this.splitContainer1.ResumeLayout(false);
this.datepanel.ResumeLayout(false);
this.datepanel.PerformLayout();
this.timepanel.ResumeLayout(false);
this.timepanel.PerformLayout();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.SplitContainer splitContainer1;
private System.Windows.Forms.Panel datepanel;
private System.Windows.Forms.TextBox datetxt;
private System.Windows.Forms.DateTimePicker dateTimePicker1;
private System.Windows.Forms.Panel timepanel;
private System.Windows.Forms.TextBox timetxt;
}
}
编辑:添加最小尺寸后,它看起来更好,但压延机下拉消失了
当控件大小调整为最小值并重建项目时..
此外,文本框不会固定在日历按钮附近。
编辑:为上面添加的图片..日历消失了。
编辑:哦,我还错过了一件事,日期字段和时间字段都是可折叠的。这就是拆分容器存在的原因。最小尺寸计算也必须意识到这一点。(我猜 2 个不同的最小尺寸取决于时间字段的可见性。)
问题:
a) 如何防止用户控件的大小调整超出特定的最小限制以避免上述问题? (pic1 好像是idea size)
b) 我能否绘制日期时间选择器,使文本被遮挡,我们只看到
日历下拉按钮?如果是这样,我还需要处理调整大小事件吗?
c) 我怎样才能不断调整文本框的大小,以便它始终覆盖 DTP 的日期文本部分。
最佳答案
你有一个简单的问题和一个困难的问题。从屏幕截图中可以明显看出这个简单的问题。 DateTimePicker 未正确调整大小,请注意下拉按钮如何在右侧被剪裁。 UserControl 太奇怪了,无法真正查明问题所在,但我认为是 datePanel。您正在使用 Anchor.Right 而不是 Dock.Fill。
困难的问题是下拉按钮会根据可用于呈现 DTP 内容的空间量动态调整自身大小。至少在 Windows 7 上,早期版本使用不同的渲染策略。遗憾的是,VisualStyles api 不返回按钮的实际大小。唯一合适的处理方法是确保文本框足够大以覆盖图标,因此只有下拉箭头可见。
我不能对 UserControl 做太多事情,我将提出一个更简单的解决方案,它仅派生自 DateTimePicker 类并在其中嵌入一个 TextBox。在运行时也很多便宜:
using System;
using System.Drawing;
using System.Windows.Forms;
using System.Windows.Forms.VisualStyles;
using System.Runtime.InteropServices;
class MyDateTimePicker : DateTimePicker {
private TextBox editbox;
private int buttonWidth;
public MyDateTimePicker() {
editbox = new TextBox();
editbox.BorderStyle = BorderStyle.None;
editbox.BackColor = Color.Gold; // debugging
this.Controls.Add(editbox);
}
public override Font Font {
get { return base.Font; }
set { base.Font = editbox.Font = value; }
}
protected override void OnResize(EventArgs e) {
if (buttonWidth == 0) measureButtonWidth();
var margin = (this.ClientSize.Height - editbox.PreferredHeight) / 2;
editbox.Location = new Point(margin, margin);
editbox.Width = this.ClientSize.Width - margin - buttonWidth;
base.OnResize(e);
}
private void measureButtonWidth() {
if (!Application.RenderWithVisualStyles) buttonWidth = 21; // TODO: measure
else {
var renderer = new VisualStyleRenderer("DATEPICKER", 3, 1);
using (var gr = CreateGraphics()) {
buttonWidth = renderer.GetPartSize(gr, ThemeSizeType.True).Height;
}
}
}
protected override void Dispose(bool disposing) {
if (disposing) editbox.Dispose();
base.Dispose(disposing);
}
}
OnResize 覆盖负责使 TextBox 保持正确的大小。添加处理 editbox.Text 属性所需的任何代码。唯一没有注意的细节是禁用视觉样式时下拉按钮的大小。现在不常见,但仍有可能。关闭机器上的主题并调整硬编码大小,使其与外观相匹配。
关于c# - 隐藏 DateTimePicker 的文本和 Usercontrol 调整大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10023158/
代码如下: http://jsfiddle.net/t2nite/KCY8g/ 我正在使用 jquery 创建这些隐藏框。 每个框都有一些文本和一个“显示”和“隐藏”按钮。我正在尝试创建一个“显示/隐
我正在尝试做某事。如果单击一个添加 #add-conferance 然后菜单将显示.add-contact。当点击隐藏然后它显示隐藏。我也将 setTimeout 设置为 7sec,但我希望当我的鼠标
我有一个多步骤(多页?)表单,只要用户按下“下一步”或“上一步”按钮,表单字段就会通过 div 显示和隐藏。 我只想禁用第一个 div (div id="page1"class="pageform")
我有一个使用 IIS 6 和 7 的当前系统,用 ASP.NET 和 .NET 4 中的 C# 编写。 My purpose is to hide the url completely (as per
我正在建立一个网站,并有一个幻灯片。幻灯片有标题和索引,覆盖整个页面。当覆盖被激活时,标题需要消失。当覆盖层被停用时,通过单击退出按钮、缩略图链接或菜单链接,字幕必须返回。 这就是我目前所拥有的
我正在尝试为显示/隐藏功能制作简单的 jquery 代码。但我仍然做错了什么。 $(document).ready(function(){ $('.arrow').click(function
我有一个自定义对话框并使用它来代替 optionMenu。所以我希望 myDialog 表现得像菜单,即在按下菜单时显示/隐藏。我尝试了很多变体,但结果相同: 因为我为 myDialog 设置了一个
在我的项目中,我通过 ViewPager 创建我的 tabBar,如下所示: MainActivity.java mViewPager = (ViewPager) findViewById(R.id.
我目前正在使用一个 Excel 表,我将第 1-17 行分组并在单元格 B18 中写入了一个单元格值。我想知道当我在展开/折叠行时单击 +/- 符号时是否有办法更改 B18 中的值。 例如:我希望 B
我想创建一个按钮来使用 VBA 隐藏和取消隐藏特定组。我拥有的代码将隐藏或取消隐藏指定级别中的所有组: Sub Macro1() ActiveSheet.Outline.ShowLevels RowL
我是 VBA 新手。我想隐藏从任何行到工作表末尾的所有行。 我遇到的问题是我不知道如何编程以隐藏最后写入的行。 我使用下一个函数知道最后写入的单元格,但我不知道在哪里放置隐藏函数。 last = Ra
我想根据另一个字段的条件在 UI 上隐藏或更新一个字段。 例如,如果我有一个名为 Color 的字段: [PXUIField(DisplayName="Color")] [PXStringList("
这是我尝试开始收集通常不会遇到的 GCC 特殊功能。这是@jlebedev 在另一个问题中提到g++的“有效C++”选项之后, -Weffc++ This option warns about C++
我开发了一个 Flutter 应用程序,我使用了 ProgressDialog小部件 ( progress_dialog: ^1.2.0 )。首先,我展示了 ProgressDialog小部件和一些代
我需要在 API 17+ 的同一个 Activity(Fragment) 中显示/隐藏状态栏。假设一个按钮将隐藏它,另一个按钮将显示它: 节目: getActivity().getWindow().s
是否可以通过组件的 ts 代码以编程方式控制下拉列表的显示/隐藏(使用 Angular2 清楚)- https://vmware.github.io/clarity/documentation/dro
我想根据 if 函数的结果隐藏/显示 NiceScroll。 在我的html中有三个部分,从左到右逐一滚动。 我的脚本如下: var section2 = $('#section2').offset(
我有这个 jquery 代码: $(document).ready(function(){ //global vars var searchBoxes = $(".box"); var searchB
这个问题已经有答案了: Does something like jQuery.toggle(boolean) exist? (5 个回答) 已关闭 6 年前。 在 jQuery 中(我当前使用的是 1
我在这样的选择标签上使用 jQuery 的 selectMenu。 $('#ddlReport').selectmenu() 在某些情况下我想隐藏它,但我不知道如何隐藏。 这不起作用: $('#ddl
我是一名优秀的程序员,十分优秀!