componentone

convert RTF to HTML from ComponentOne RichTextBox?

时光总嘲笑我的痴心妄想 提交于 2019-12-02 07:40:06
The section Read and Write Rich Text Format Documents of this online article of UWP edition of ComponentOne reads: you can use it to convert RTF to HTML and vice versa. I went through their API document and did not find any code example of such functionality and could not figure out which method from their APIs to use. Question : Could you please provide (or link to an online sample) for converting RTF to HTML from RichTextBox control of ComponentOne's UWP Edition? I'm using C# but VB code also be fine. Nico Zhu - MSFT ComponentOne you can use it to convert RTF to HTML and vice versa. You

ComponentOne Xuni助力Xamarin开发者突破百万,快速开发Android、IOS

 ̄綄美尐妖づ 提交于 2019-12-01 16:01:07
在微软Build 2015上,随着VS 2015的预览版发布,Xamrine免费版已经作为VS 2015跨平台移动解决方案的核心。与此同时, Xamarin 官方也宣布其用户量达到百万之多。2011年7月,Xamarin 开始使用C#开发IOS和Android app,截止2015月4月29日,用户量到达了百万,下面我们就新功能做一些分享: Xamarin.Forms for Windows Xamarin.Forms for Windows 8.1 and Windows Phone 8.1 今年3月份发布了针对Windows和Windows Phone预览版的Xamarin.Forms,在社区受到开发者的普遍欢迎。我们今天宣布将继续加强对这些平台的支持,使得开发人员仅需要基于Xamarin.Forms apps 的同一套代码,即可发布app到IOS、Android、Windows、Windows Phone。另外为了方便开发者开发,Xamarin.Forms for Windows 、Windows.Phone可通过NuGet下载。 Availability of Private Previews of Xamarin.Forms for Windows 10 UAP 同时,内部预览版的Windows 10 Universal App Platform已经发布

C1RichTextBox with custom copy/paste behavior

自闭症网瘾萝莉.ら 提交于 2019-12-01 10:31:57
When using C1RichTextBox in Silverlight 5 with IE 10, I am facing two major issues: During a clipboard paste operation, how can I detect if the content was copied from another C1RichTextBox in my Silverlight application or from an external application? From external applications, only text should be pasted without formatting. Copy/Pasting large inline images from one C1RichTextBox to another does not work. The <img> elements have the image content stored in their data URL. If the image becomes too large (approx 1MB), the src attribute is dropped when copied to the clipboard. The solution

C1RichTextBox with custom copy/paste behavior

我们两清 提交于 2019-12-01 08:42:06
问题 When using C1RichTextBox in Silverlight 5 with IE 10, I am facing two major issues: During a clipboard paste operation, how can I detect if the content was copied from another C1RichTextBox in my Silverlight application or from an external application? From external applications, only text should be pasted without formatting. Copy/Pasting large inline images from one C1RichTextBox to another does not work. The <img> elements have the image content stored in their data URL. If the image

Alternative to ComponentOne 3D Surface Map Chart [closed]

倾然丶 夕夏残阳落幕 提交于 2019-11-30 07:31:06
We are investigating alterntive control libraries for a new project we are working on. One of the requirements is to display data in the form of a surface map, as per the ComponentOne Chart below. We've used the C1 control in the past but are not entirely happy with it - so wondered if anyone can recommoned some alternatives. Having some trouble finding any, so all help appreciated. NB: This is a .NET 3.5 WinForms application Here are some commercial providers that have the type of chart you're looking for: ChartFX for .NET - Gallery of available charts including 3D surface Nevron Chart for

Xamarin 技术全解析

回眸只為那壹抹淺笑 提交于 2019-11-29 16:43:06
Xamarin 是一套基于C#语言的跨平台移动应用开发工具,今年2月份微软宣布收购Xamarin,而后在4月份进行的Build大会上微软宣布将会在各个版本的Visual Studio中免费提供Xamarin,并且宣布Xamarin SDK开源。 本文主要阐述Xamarin是什么,它能做什么以及它是如何跨平台的。 1. 什么是Xamarin Xamarin 是一个跨平台的 移动开发 工具,由 Mono 发展而来。开发人员可以使用 C# 为 iOS , Android , Mac以及Windows Phone开发原生应用。 Xamarin 的跨平台开发思路是:使用 C# 来完成所有平台共用的,和平台无关的 app 逻辑部分;由于各个平台的 UI 和交互不同,再使用由 Xamarin 封装好的 C# API 来访问和操控 native 的控件,分别进行不同平台的 UI 开发。 如下图: 另外Xamarin还提供了Xamarin.Forms UI工具包,Xamarin.Forms可以帮助开发人员快速的构建跨平台的UI,通过一次编码,生成多个平台的原生UI界面,稍后本文会讲述Xamarin.Forms的使用方法以及实现原理。 2. Xamarin能做什么 Xamarin主要由Xamarin.iOS,Xamarin.Android以及Xamarin.Forms组成,主要功能也有着三部分组成:

Moving the column of RenderTable

为君一笑 提交于 2019-11-28 02:17:00
I have a renderTable and I am adding rows and columns to the table as follows- RenderTable renderTable = new RenderTable(); DataTable dt = GetData(); foreach (DataRow row in dt.Rows) { var header = renderTable.Rows[renderTable.Rows.Count]; header[0].Text = "Column 1"; header[1].Text = "Column 2"; header[2].Text = "Column 3"; header[1].Text = "Column 4"; var data = renderTable.Rows[renderTable.Rows.Count]; data [0].Text = row["col1"].ToString(); // 10 data [1].Text = row["col2"].ToString(); // 11 data [2].Text = row["col3"].ToString(); // 12 data [3].Text = row["col4"].ToString(); // 13 } This