- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有自定义控件:CustomControlOne, CustomControlTwo
.
我的 CustomControlOne
有一个 List<CustomControlTwo>
在我的 Windows 窗体应用程序项目的属性面板中显示:
因此,当我单击该按钮时,将打开一个用于向该集合中添加新 项目的窗口:
但是,我想添加在 MyForm 中定义的 existing CustomControlTwo 项。 ps.: MyForm包含CustomControlOne和多个CustomControlTwo。
我希望可以在设计时添加这些项目,就像在组合框中(在 CustomControlOne 属性面板中)选择项目一样。当我改变 List<CustomControlTwo>
至 ICollection<CustomControlTwo>
显示了一个组合框,但没有出现 CustomControlTwo 类型的项目:(
我该怎么做?我怎么能对我的 CustomControlOne 说 CustomControlTwo 项目在哪里?谢谢。
我编写了自己的 UITypeEditor,并在@Sefe 和 THIS 的帮助下实现了我的目标关联。下面是我的代码:
public class CollectionTypeEditor : UITypeEditor {
private IWindowsFormsEditorService _editorService = null;
private ICollection<Control> mControls = null;
private List<Control> mPickedControls = null;
// Editor like Modal style
public override UITypeEditorEditStyle GetEditStyle(ITypeDescriptorContext context) {
return UITypeEditorEditStyle.Modal;
}
// Opens modal and get returned data
public override object EditValue(ITypeDescriptorContext context, IServiceProvider provider, object value) {
if (provider == null)
return value;
_editorService = (IWindowsFormsEditorService) provider
.GetService(typeof(IWindowsFormsEditorService));
if (_editorService == null)
return value;
mControls = new List<Control>();
// retrieve old data
mPickedControls = value as List<Control>;
if (mPickedControls == null)
mPickedControls = new List<Control>();
// getting existent controls that will be inflated in modal
Control mContext = (Control) context.Instance;
GetControls(mContext);
// open form and get response
CollectionDesign<Control> frmCollections = new CollectionDesign<Control>(mControls, ref mPickedControls);
var response = _editorService.ShowDialog(frmCollections);
// returning data from editor
return response == DialogResult.OK ? mPickedControls : value;
}
这里一切正常。现在,我在属性面板中的变量:
[Editor(typeof(CollectionTypeEditor), typeof(UITypeEditor))]
[TypeConverter(typeof(ActionButtonConverter))]
[DesignerSerializationVisibility(DesignerSerializationVisibility.Content)]
public List<Control> ActionButtons { get; set; }
由于无法保存文件,添加了序列化属性。关闭并重新打开表单时,所有数据都将丢失。
奇怪的是我用同样的方式写了其他的UITypeEditor,只是把数据类型改成了string
我可以关闭或重新打开我的表单,一切正常,数据已保存。
我已经添加了一个 TypeConverter,但我认为这里不是这种情况。我的代码有什么问题?
在此设置中,BaseForm
扩展表格。字符串有效,但列表数据在关闭表单或构建项目时丢失...
恢复工作流程:
1 - 打开我的表格。
2 - 单击 MyForm 属性面板上的 ActionButtons 省略号 [...](由 BaseForm 继承)。
3 - 打开一个自定义表单,其中包含我想要挑选的膨胀对象。
4 - 选取我想要的对象并关闭表格。所以现在,数据正常了,因为我可以重新打开该表单并查看我选择的对象。
5 - 现在关闭 MyForm 并重新打开它时,所有数据都丢失了。构建项目时也会发生同样的事情。但是,如果我用一个字符串执行所有这些步骤,一切都很好(数据已保存)。
谢谢大家,抱歉语言不好:P
最佳答案
如果您想向控件添加多个 CustomControlTwo
项,下拉列表对您没有好处,因为您只能在其中选择一个值。
如果您能够更改属性以接受 CustomControlTwo
的单个实例(或者可以在属性浏览器中创建的列表只有一个项目),则可以创建一个新的System.ComponentModel.TypeConverter
这将创建可供选择的列表。类型转换器是一个抽象类,您必须实现几个抽象方法。对您有值(value)的方法是 GetStandardValuesSupported
、GetStandardValuesExclusive
和 GetStandardValues
。这是您感兴趣的部分(您必须添加其他方法):
public class CustomControlOneConverter : TypeConverter {
public override bool GetStandardValuesSupported(ITypeDescriptorContext context)
{
//By returning true, you tell the property designer to add a drop down list
return true;
}
public override bool GetStandardValuesExclusive(ITypeDescriptorContext context)
{
//By returning true, you tell the property designer to not allow the user to enter his own text
return true;
}
public override StandardValuesCollection GetStandardValues(ITypeDescriptorContext context)
{
//Get all objects of type CustomControlTwo from the container
CustomControlTwo[] controlsToList =
context.Container.Components.OfType<CustomControlTwo>().ToArray;
//Return a collection of the controls
return new StandardValuesCollection(controlsToList);
}
//implement the other abstract methods
}
您在 GetStandardValues
中所做的是在 CustomControlOne
的容器中搜索,如果有 CustomControlTwo
的实例。然后将这些添加到标准值列表中,以便在属性浏览器中进行选择。
如果您不能更改您的属性以仅选择一个 CustomControlTwo
,您将需要创建自己的 UI 以在省略号 (...)在您的属性窗口中单击。为此,您需要创建自己的 UITypeEditor
.然而,这是一项更复杂的工作,不容易简单地解释清楚。
关于c# - 如何在设计时使用 C# WindowsFormApplication 在另一个属性面板上添加现有控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40844043/
我有一个 Bootstrap 面板,里面有另一个面板。两者在面板标题中都有一个字形图标。默认情况下,面板是折叠的。当面板折叠时,将设置 glyphicon-unchecked。当我点击这个字形图标时,
使用 Grafana 时,我们会在某些电视上使用它。有谁知道制作它的方法,如果有人添加面板,更改布局等,它不仅会自动刷新数据,还会自动刷新实际仪表板? 我们真的厌倦了不断要求具有远程访问权限的人登录并
基本上,我试图让屏幕底部有 3 个按钮,然后在屏幕中间有一个包含文字的标签。但是,我似乎无法同时在 GUI 中同时拥有按钮和标签。我是一名初学者,对布局了解不多(即使我已经阅读过它们),因此任何帮助/
作为学校的类(class)作业,我们必须提出一个自定义项目,我选择了一个原本打算在 ActionScript 上编写的游戏创意,但决定在 Java 上插入它。最初进展顺利,游戏代码正常运行, Spri
我正在尝试使用 Java Graphics 制作一个生命模拟游戏,但是当运行我的代码时,屏幕的左侧三分之一是灰色的。我希望整个屏幕是白色的,黑色方 block 代表生命方 block 。我对所有 ja
下面是动态驱动的一个不错的“下拉面板”。 http://www.dynamicdrive.com/dynamicindex17/dddropdownpanel.htm 如您所见,它是一个面板,在打开时
所以我有这个函数 onDisplayError ,如果请求失败,每次都会调用它。这意味着如果用户按下保存按钮并且 3 个请求失败,我当前会收到 3 个弹出消息。我的目标是此函数检查我的弹出窗口是否已打
我正在尝试为我的一个类(class)制作一款游戏,但在实现一些我想做的事情时遇到了麻烦。本质上,我希望在同一个图形用户界面窗口中包含多个不同的部分。 据我了解,我会使用 JPanel 来创建这些不同的
我目前正在测试这种类型的面板 jquery: http://codyhouse.co/gem/css-slide-in-panel/ 但是当我想检测从顶部滚动以显示一个 div 时:没办法:( 一种检
我可能正在搜索错误的问题,但我找不到这个问题的答案。 我有一个 AutoScroll 设置为 true 的面板。控件动态添加到面板。我需要在滚动条可见时触发一个事件,但我找不到这样的事件。 如有任何建
我有一堆 Bootstrap 面板,其中一些是相互关联的。有点像 Panel A -> Panel B -> Panel C 当用户单击面板 B 时,将显示面板 C,当单击面板 C 时,将显示面板 D
我正在尝试开发一种带有指标的下拉列表,并相应地针对应该出现在仪表板上的选定指标特定面板。反之亦然,如果未选择指标,则面板应隐藏。 我找到了链接 http://search-devops.com/m/k
我有一个窗口,窗口里面有面板。我动态地向面板添加组件。这些组件采用“hbox”布局,以便它们水平排列。单击按钮后,我将在“hbox”布局中再向面板添加一行类似组件。这里的问题是我想在第一行下面添加第二
我使用 jQuery Accordion 将表单拆分为多个面板,并使用 jQuery 验证来检查所需字段。只要验证字段位于打开的面板中,它就可以很好地显示已验证字段中的错误。 举个例子。假设我有三个
我正在尝试检查我的面板是打开还是关闭。 我尝试过这样的: $(document).on('open', '.ui-panel', function(){ console.log('open');
我有一个面板,我想将其 float 在所有窗口之上并出现在所有空间中。这可以通过 轻松完成 [self.panel setLevel:kCGUtilityWindowLevel]; [self.win
我想在格子中的单个面板上叠加多个组,并且想要独立的回归线。 获得多个面板相当容易,每个面板都有一条使用条件因子的回归线: xyplot( Petal.Width ~ Petal.Length |
Delphi 有滑动(动画)面板组件吗? 例如可以在 Raize Components 中找到它(带有“热点”或隐藏/显示按钮的左侧面板)。 我不需要一个可调整大小的面板,而是一个可以从左向右水平平滑
我有一个 Bootstrap Accordion : 我想禁用非事件面板中的所有输入控件。仅验证事件面板。 我有一个检测事件选项卡的功能: $(".panel").on("show.bs.collap
我正在尝试将组件放入不同尺寸的面板中。但是,我意识到 GridLayout 将大小相同的部分分开。如何实现如下图所示 enter image description here import java.
我是一名优秀的程序员,十分优秀!