由买买提看人间百态

topics

全部话题 - 话题: winforms
1 2 3 4 下页 末页 (共4页)
e***r
发帖数: 68
1
来自主题: Programming版 - 问个Winform与工作类的互动问题。
我把要实现的功能都放到一个worker class里面,然后把该worker class作为一个
winform class的成员。用户点击winform上的button时,button的event内会call
worker class的public方法。
现在的问题是,我想在winform内显示worker class输出的信息,不知道最地道的做法
是什么。
如果都在一个class, worker可以通过改变winform内textbox.Text来显示不同信息,但
现在winform和worker class在不同的类,不能直接调用,而且winform control都是私
有成员,不能通过winform的reference直接访问。
不知道这种winform和worker class的coupling问题是不是很常见而且有成熟的解决办
e***r
发帖数: 68
2
来自主题: Programming版 - 问个Winform与工作类的互动问题。
弄出来了:
1.worker class define&declare一个delegate.
2.然后winform中定义一个函数,绑定到worker class的delegate中
3.每当需要update的时候,worker class调用delegate.
说白了就是把winform中update textbox的函数指针传进worker class,然后update时
worker class调用函数指针对winform进行update.
语法比定义event要简练一些。
j******7
发帖数: 13
3
International Banks and Hedge funds looking for expert C#, Winforms
developers. Real client-server C# Winforms developers rather than using
ASP.NET and WebForms.
Salary very competitive / Sponsor h1b
Please email resume to f**********************[email protected]
WB
发帖数: 170
4
【 以下文字转载自 DotNet 讨论区 】
发信人: WB (wb), 信区: DotNet
标 题: winform还是java的swinggui流畅?
发信站: BBS 未名空间站 (Thu Feb 16 10:14:12 2012, 美东)
觉得winform很卡
e***r
发帖数: 68
5
来自主题: Programming版 - C# Winform关闭时的问题。
Winform关闭时需要释放一些资源,我现在实现了一个Exit Button。但同时Winform右
上角的"X"也可以关闭程序,但这时候资源没有被释放。
请教一下有上角的"X"执行的逻辑可以被改变,从而释放资源吗?
N****O
发帖数: 4202
6
看到这个,转的。。。
Looking for strong C# developers with Winforms experience for our financial
client. Permanent positions available in NY & NJ (no H1s please). Email
t***[email protected] for more info!
N********n
发帖数: 8363
7

Still using WinForm? It's WPF's age now.
WB
发帖数: 170
8
来自主题: DotNet版 - winform显示excel文件的问题
想要显示excel文件,到底使用owc11控件还是reportviwer控件,
需要显示excel的状态兰,就是winform的excel选中部分,
状态兰可以显示求和。
reporviewer如何打开excel文件?
WB
发帖数: 170
9
来自主题: DotNet版 - winform还是java的swinggui流畅?
觉得winform很卡
o****e
发帖数: 916
10
来自主题: DotNet版 - winform还是java的swinggui流畅?
太复杂的winform确实可能会卡,试试wpf?win7下wpf是硬件渲染的,应该快很多。
w******0
发帖数: 467
11
大家有没有最快捷的方法呢?
这个WinForm software has over 90 Forms, 我们现在需要做一个Web 版本的。
谢谢大家了。
W********n
发帖数: 254
12
应该没有直接转换的方法,但如果winform是严格遵循mvc开发,那UI的重写应该是很简
单的。
e***r
发帖数: 68
13
来自主题: Programming版 - 问个Winform与工作类的互动问题。
问题是public method执行过程中不同阶段要输出不同信息。例如worker class中有一
个ConnectToServer(...),开始时输出: "Connecting to Server...",连接建立后
要输出"Connected to Server". 我想winform每个阶段都把这些信息output到text box
上。
g********a
发帖数: 649
14
来自主题: Programming版 - 问个Winform与工作类的互动问题。
搞个event吧,每次有新文字就fire event,winform的event handler
对应更新。

box
b********d
发帖数: 393
15
谢谢楼上几位的集思广益,但是和我想要做的还是有点差距。大致的想法再描述一下,
有没有牛人看看可行不可行。
由于HTTP的stateless本质,用Web page实现比较复杂的UI不是不可行,但是复杂程度
随着UI的state的多少成几何级数增长。所以当UI比较复杂的时候,我还是倾向于
WinForm.
我想实现的是:IIS的功能只限于两个,1)WCF的host。2)UI控件的host。IIS不起任
何HTML的rendering的功能。
作为客户端,IE只作为UI控件的container,就像flash player一样,所有的User
events是由UI的控件来处理,客户端没有任何的HTML postback。其实就是想做一个
WinForm的application,但是WinForm里所有的UI Control都是由IIS来publish,用IE
来当UI Control的container。最终的目标就是一个不需要客户端安装的WinForm
application。
不知道我有没有说清楚。谢谢。
b********d
发帖数: 393
16
谢谢楼上几位的集思广益,但是和我想要做的还是有点差距。大致的想法再描述一下,
有没有牛人看看可行不可行。
由于HTTP的stateless本质,用Web page实现比较复杂的UI不是不可行,但是复杂程度
随着UI的state的多少成几何级数增长。所以当UI比较复杂的时候,我还是倾向于
WinForm.
我想实现的是:IIS的功能只限于两个,1)WCF的host。2)UI控件的host。IIS不起任
何HTML的rendering的功能。
作为客户端,IE只作为UI控件的container,就像flash player一样,所有的User
events是由UI的控件来处理,客户端没有任何的HTML postback。其实就是想做一个
WinForm的application,但是WinForm里所有的UI Control都是由IIS来publish,用IE
来当UI Control的container。最终的目标就是一个不需要客户端安装的WinForm
application。
不知道我有没有说清楚。谢谢。
D**u
发帖数: 288
17
来自主题: Programming版 - mono 到底有木有!
用VS2010写了三个月 C# winform app 有木有!
Unix Admin 说先在Cygwin上试一下mono 有木有!
装了一个星期的mono都木有成功 有木有!!!!!!
每次make 30分钟后就失败 有木有!!!!!!
google, stackoverflow上都翻遍了 有木有!!!!!!!
大家的问题都不一样 有木有!!!!!!
latest version 2.10.9 可是 2.11.2 windows installer 网上也有 有木有!
version 1.0.0 到 2.14.0 到3.2.0的 installer 都有,为啥latest version 是 2.10
.9 有木有!!!!!!!
最后只好放弃 有木有!!!!
发现可以用vmware opensuse 突然满血复活 有木有!!!!!!!
安装巨简单 灰常灰常兴奋 有木有!!!!!!
but!!!!!!!!!!!!
装完winform 还是不能用 有木有!!!!
同样的error stackoverflow只有人问没有人答 有木有!!!!!!!!!
gtk倒是可以用 有木有!!!!!!!... 阅读全帖
r****y
发帖数: 26819
18
winforms,拿来写windows下的内部交流的小工具,可能很不错,但是我一直没有机会
用。
我只用到了asp.net。asp.net至少是跨了一半的平台,在client端完全跨平台。这个
比winforms有价值一些。
L*********r
发帖数: 92
19
常用的应该是non-ui lib, 如ado.net, xml, mq etc.
ASP.net 或 winform适用于不同的product.
两个各有不同的business case.
desktop应用的客户对程序的size要求不高.
实际上, 对于开发实现, winform 和 ASP.net没区别.
l*s
发帖数: 783
20
☆─────────────────────────────────────☆
rodney (gotoAndPlay(0)) 于 (Thu Mar 8 17:28:14 2007) 提到:
winforms,拿来写windows下的内部交流的小工具,可能很不错,但是我一直没有机会
用。
我只用到了asp.net。asp.net至少是跨了一半的平台,在client端完全跨平台。这个
比winforms有价值一些。
☆─────────────────────────────────────☆
les (Walk the walk, talk the talk) 于 (Thu Mar 8 19:57:24 2007) 提到:
我们公司全是webform projects.windforms也只是业余小打小闹编点工具。

☆─────────────────────────────────────☆
a9 (嗯) 于 (Thu Mar 8 20:00:19 2007) 提到:
至少目前,布署.net framework还是件很麻烦的事情。
机会
☆───
M******k
发帖数: 27573
21
来自主题: DotNet版 - Property.Settings问题
solution包括一个winform app, 一个asp.net site加一个class library.
在library里需要access一个property.setting, 这个property.setting应该是由
library的caller来设定的(如果是winform app调用library,就取app.config里的
setting).
用老的appSettings["....."]肯定很简单可以实现,用现在这套新的property.settings
机制,有什么好方法?
W********n
发帖数: 254
22
来自主题: DotNet版 - 想换工作了。。。唉
这里有没有谁的公司需要招人的。。。
本人经历如下:
2005-06 两年Java spring的开发
2007-目前 一直都是.Net, 语言C#为主, VB.NET为辅,但个人更喜欢C#风格的代码。。
WinForms SCSF/CAB
WCF, Workflow Foundation,
ASP.NET, ASP.NET MVC 3, Silverlight / WPF
JQuery etc.
数据库用的基本都是oracle和MS两家的
其他的一些用的比较多的lib或者framework: Prism, EF 4, EntLib 4, NHibernate,
Unity, elmah, log4net, leadtools, oracle的odp.net etc..
个人学过但是没在项目中遇到过的:MEF, Automapper
做Java开发的时候一直是TDD,但是没想到转到.net之后因为公司比较小,所以除了WCF
部分会做unit testing code,Winform 和 asp.net都一直没有遵循TDD开发,我们倒是
一直用Tinderbox或者cruise contr... 阅读全帖
d*******r
发帖数: 3299
23
来自主题: Programming版 - mono 到底有木有!
Mono 要用收费版 Xamarin 吧,不过看 Xamarin 也不支持 winforms
http://xamarin.com/tour
所以貌似不应该用 Mono 写 winforms
k**********g
发帖数: 989
24

This is WinForms, not MFC. WinForms is a framework for building business-
looking GUI quickly. It is only available on managed languages - Common
Language Runtime (CLR), the virtual machine made by Microsoft.
The language you're seeing is either C++/CLI or C++/CX. Neither of them are
C++.
The information below applies to Visual Studio Express editions. According
to rumors (I cannot confirm or deny it) the Express editions (which are free
) do not come with MFC. Trying to use MFC on these free ... 阅读全帖
B********r
发帖数: 397
25
来自主题: Programming版 - typescript -- c# 软软的末路
就。net那破winform,还不如java swing,人家至少还能cross platform
再差也要用gtk with c/c++,winform就是垃圾,除了些卢瑟还用还有谁屌。全尼玛转
到web了好吗
别跟我说游戏,90%都c/c++ 出来的。就算unity 也支持javascript 了好吗
btw 菊花王你好。
e*********t
发帖数: 2
26
Enigma Asset Management is a research-driven investment company specialising
in applying scientific methods to the analysis of global financial markets.
The company was founded in June 2011 with support from an Australian asset
manager with a long history of quantitative investing. Enigma is registered
with the National Futures Association in the USA and holds an Australian
Financial Service License (AFSL) authorized rep status. Sun Shui Asset
Management, from China, has recently joined as an eq... 阅读全帖
x*s
发帖数: 67
27
来自主题: JobHunting版 - Positions in NYC area
Positions available, learned from a head hunter:
JAVA Roles
1) Sr. Java Developer for Equity technology software development team to
support equity/equity derivative analytics, trading, quantitative portfolio
construction and risk management.
2) Core Java with an Equities background for multiple clients in NYC and
Jersey City
3) Core Java Developer for a growing Foreign Exchange group. Any
experience with C#/Winforms is a plus.
4) Java developer for a JSP, Servlets, AJAX, Struts, an
g**********y
发帖数: 14569
28
来自主题: JobHunting版 - C#/.NET opportunity in northern NJ
Our company is recruiting a C#/.NET developer, WinForm experience is plus. If anyone interested, please PM me.
There are quite a few candidates showed up, but none of them qualify.
If you can answer or have idea of problems usually asked on this board, chances are you are better candidate than them.
Experience/Qualifications:
• 3-5 years experience
• Enthusiastic team player
• Solid foundation of software development principles
• Excellent oral communic... 阅读全帖
p*****2
发帖数: 21240
29
来自主题: JobHunting版 - 请推荐一本WPF入门用书,谢谢!

winform
z****2
发帖数: 1618
30
来自主题: JobHunting版 - ME小硕找CS工作求建议
自我推销下,本人ME各方面(CAD,FEA,CFD,heat)背景皆备。虽无CS学位,但是平
日素爱编程,没事就喜欢看些《Design Pattern》、《code complete》之类,每有会
意,便欣然忘食。
C加加和C sharp底子都不错,java入门;有MFC,Qt,WinForm编GUI的经验,有
computaional geometry,2D/3D geometry modeling的基础,Open GL,HOOPS, ACIS
略懂。希望能找个相关编程的工作。
什么A家,M家,L家,G家之类的我是面不过了,不知道版上有没有大神知道有CAD/CAE/
CAM软件方面的Opening的,求refer。
h*******l
发帖数: 96
31
来自主题: JobHunting版 - 工作机会
Windows application software engineer, 熟悉WinForm,WPF 或 MFC都可以。欢迎
应届毕业生,公司在San Jose,CA 做芯片的。 local的优先。有兴趣的请PM。
h*d
发帖数: 19309
32
前阵子monster上面看到芝加哥一个trading公司招winform developer说给$190K,虽然
去哪个站点看说base是$145K,看起来还是挺高的。
h*d
发帖数: 19309
33
来自主题: JobHunting版 - 收到貌似是明州ICC的骚扰
记得前阵子有人要来的
My name is Roshan, and I’m with TAJ Technologies, Inc. Headquartered in
Minnesota. I noticed your information on the job boards and would like to
give you some information about a position you may be interested in. TAJ is
an IT consulting firm that specializes in providing premium technology
solutions across a variety of industries. For over two decades, we’ve been
providing technology staffing, consulting and project-based services to a
number of distinguished clients.
We’re proud o... 阅读全帖
J*****6
发帖数: 107
34
本人纽约小猎头, 手上职位大概全纽约所有金融行业的软工职位都有了。还有好多
hedge fund 的quant 职位。贴一个hedge fund 的java职位吧:14万的样子,可以
sponsor h1b,纽约职位。 但是不是entry level的职位哦, 14万的职位是需求3年的
经验的哦~~小猎立志要为中国码工找到更好的归宿!!!更好的待遇,更多的中国人
的公司~~~灭哈哈哈~~~废话不多了,如果有各种3年经验的C++/JAVA/c# 请
随便飞个简历给小猎哈,简历请发到[email protected]
/* */ 我收到简历后会马不停蹄
的联系大家哒。小猎在这边先谢谢咯~~~
The candidate will join the Client Trading and Technologyteam as a front
office developer, be closely aligned with a trading business,and will
participate in the full development lifecycle includi... 阅读全帖
x*****p
发帖数: 1707
35
来自主题: JobMarket版 - A C# position is open
There is a C# position from our direct clients. The technical skills include
Data Structure, Algorithms, C#, Winforms, WebForms, SSIS, SSRS.
The annual rate is $100k. PhD is preferred.
If you are interested in this position, email to y*****[email protected] or call
me at 240-475-2317.
s******l
发帖数: 472
36
来自主题: JobMarket版 - Hiring Analytics C# Developer (转载)
【 以下文字转载自 Quant 讨论区 】
发信人: strangel (strangel), 信区: Quant
标 题: Hiring Analytics C# Developer
发信站: BBS 未名空间站 (Fri Mar 2 19:04:54 2012, 美东)
Hi friends,
My team is looking for analytics C# developer with capital market experience
. The work place is in Charlotte, NC. The position is contractor to hire.
Please email me your resume if you are interested in the position. rr28213@
yahoo.com.
Job Description:
Capital Markets Quantitative Developer
Front Office/Middle Office/Finance system develope... 阅读全帖
e*********t
发帖数: 2
37
Enigma Asset Management is a research-driven investment company specialising
in applying scientific methods to the analysis of global financial markets.
The company was founded in June 2011 with support from an Australian asset
manager with a long history of quantitative investing. Enigma is registered
with the National Futures Association in the USA and holds an Australian
Financial Service License (AFSL) authorized rep status. Sun Shui Asset
Management, from China, has recently joined as an eq... 阅读全帖

发帖数: 1
38
国内顶级私募基金诚聘英才
本公司是一家专业从事低延迟程序化交易的私募,总部位于北京地标性建筑内。公
司核心成员均毕业于斯坦福、清华、北大、人大、科大等海内外著名大学数学或计算机
相关专业,并曾就职于Morgan Stanley、IMC等世界一流程序化交易机构。我们致力于
通过深度观察分析市场微观数据来研究市场规律,并利用数学、统计、机器学习等方法
开展程序化交易,涉猎期货、期权、股票等多个国内外市场。公司自成立以来,依靠团
队强大的研发平台和专业的开发能力取得了持续多年的优异业绩(主要策略Sharpe
Ratio高于30)
公司以顶尖人才为第一生产力,坚持扁平化管理,遵循平等互助原则,使每位员工
在团队中均承担重要角色,并能在轻松有趣的工作氛围中尽情发挥个人才能。除了极富
竞争力的薪酬体系和标准的五险一金外,公司提供的福利如下:
- 免费三餐(聘请了专职的私厨)和snacks
- 地标建筑办公,环境舒适、风景宜人,自有健身房、娱乐休闲区
- 可升降办公桌,可以站着办公(非常重要!)
- 各种节日大餐和节日礼物(iPhone级别)
- 商业补充医疗 + 高端私立医院报销
... 阅读全帖
c**t
发帖数: 2744
39
来自主题: Working版 - 今天被一个同事给雷到了
trading floor在用一个非常简单的vb6 app,现在要求增加新的feature,我花了一天
的时间把它port 到WPF并实现了新的功能 (only one winform with a few buttons,
which insert/update tables in Oracle)。居然同事说这是impossilbe,怀疑我的工作。
t****t
发帖数: 387
40
asp.net里面是把gridview的autogeneratecolumn设为false
我想winform可能也差不多
s******l
发帖数: 472
41
来自主题: Carolinas版 - Hiring Analytics C# Developer (转载)
【 以下文字转载自 JobMarket 讨论区 】
发信人: strangel (strangel), 信区: JobMarket
标 题: Hiring Analytics C# Developer (转载)
发信站: BBS 未名空间站 (Fri Mar 2 19:12:18 2012, 美东)
发信人: strangel (strangel), 信区: Quant
标 题: Hiring Analytics C# Developer
发信站: BBS 未名空间站 (Fri Mar 2 19:04:54 2012, 美东)
Hi friends,
My team is looking for analytics C# developer with capital market experience
. The work place is in Charlotte, NC. The position is contractor to hire.
Please email me your resume if you are interested in the positio... 阅读全帖
b*****r
发帖数: 98
42
来自主题: LosAngeles版 - C# developer openning
At a financial company. Location is in Newport Beach. Work is hard but pay
is not bad. If you are good at either the following and are interested in
the job, let me know.
1. GUI development (MFC, WinForm, WPF, Silverlight, Flash, etc)
2. Data Structure and Optimization, say, how to traverse a 10 million node
graph in the shortest time. how to transmit a tree structure from one
machine to another machine in the most efficient way, etc.
w******y
发帖数: 291
43
来自主题: SanFrancisco版 - 求面试题
c/c++/c#/wpf/winform/embedded/Windows App
难点的,直接废了丫的。有吗?
h*******l
发帖数: 96
44
来自主题: SanFrancisco版 - 发个工作,感兴趣的进来看看
Windows application software engineer。写UI软件,WinForm,WPF,MFC等等回一个
就行。公司在San Jose,做芯片的。欢迎应届毕业生。如果有兴趣,PM联系。
S******y
发帖数: 1330
45
来自主题: Seattle版 - 这次SL停止开发很伤RP
...悲剧了,做了好久Winform和WPF。有人REFER个工作吗?
1 2 3 4 下页 末页 (共4页)