검색결과 리스트
visual studio 2010 에 해당되는 글 19건
- 2010.09.27 {Code Party}9월 29일 MVC와 MVVM 웹 개발 두 번째 시간입니다.
- 2010.05.18 VC++ 개발자와 함께 하는 Visual Studio 2010 세미나
- 2010.05.07 Testing support for Silverlight apps in Visual Studio 2010
- 2010.04.29 서울 버스 앱을 Silverlight 기반으로 개발해 봤습니다. (3)
- 2010.04.27 WPF 4.0 달라진 내용들을 요약해 봅니다.
- 2010.04.27 Touch Application 제작을 위한 첫 번째 가이드
- 2010.04.26 .NET Framework 4 마이그레이션 이슈 요약!!
- 2010.04.23 .NET Framework 4.0 뭐가 달라졌나? (1)
- 2010.04.21 C# 4.0 뭐가 달라졌을까요? (2)
- 2010.04.13 Visual Studio 2010 RTM에서는 the Windows Phone Developer Tools CTP가 실행되지 않습니다.


그러고 보니 일시와 장소를 공지하지 않아서 다시 업데이트 해 드립니다.
2010년 5월 26일 삼성동 섬유회관 신청은
http://www.imaso.co.kr/?doc=bbs/gnuboard.php&bo_table=notice&wr_id=266 에서 하실 수 있습니다.
VC++ 개발자를 위한 Visual Studio 2010 세미나에서 모바일 트랜드와 비주얼 스튜디오 2010이라는 제목으로 발표를 하게 되었습니다. Compact Framework + Silverlight를 이용한 모바일 앱 개발 방법에 대해서 설명을 해드리고 iPhone + Android와 같은 경쟁 기술과의 비교도 시원하게 해드릴까 생각중입니다. ^^
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
Silverlight를 Visual Studio 2010에서 개발할 때 필요한 테스트 기법에 대한 정리 입니다.
http://blogs.msdn.com/anutthara/archive/2010/03/21/testing-support-for-silverlight-apps-in-visual-studio-2010.aspx
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
아직은 뼈대만 있는 수준이지만 동작은 깔끔하게 잘 됩니다.
조만간 UI/UX 전문 디자이너와 협업해서 제대로 된 버전을 보여드리겠습니다.
이런게 왜이리 잼있지 ^^
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
New Controls
Visual State Manager
Touch and Manipulation
Graphics and Animations
Text
Binding
XAML Browser Applications
WPF and Windows
WPF and Silverlight Designer
New Controls
DataGrid
Calendar
DatePicker
몇가지 그래픽과 애니메이션과 관련된 변화들 입니다.
-
Layout Rounding
When an object edge falls in the middle of a pixel device, the DPI-independent graphics system can create rendering artifacts, such as blurry or semi-transparent edges. Previous versions of WPF included pixel snapping to help handle this case. Silverlight 2 introduced layout rounding, which is another way to move elements so that edges fall on whole pixel boundaries. WPF now supports layout rounding with the UseLayoutRounding attached property on FrameworkElement.
-
Cached Composition
By using the new BitmapCache and BitmapCacheBrush classes, you can cache a complex part of the visual tree as a bitmap and greatly improve rendering time. The bitmap remains responsive to user input, such as mouse clicks, and you can paint it onto other elements just like any brush.
-
Pixel Shader 3 Support
WPF 4 builds on top of the ShaderEffect support introduced in WPF 3.5 SP1 by allowing applications to now write effects by using Pixel Shader (PS) version 3.0. The PS 3.0 shader model is more sophisticated than PS 2.0, which allows for even more effects on supported hardware.
-
Easing Functions
You can enhance animations with easing functions, which give you additional control over the behavior of animations. For example, you can apply an ElasticEase to an animation to give the animation a springy behavior. For more information, see the easing types in the System.Windows.Media.Animation namespace.
-
New Text Rendering Stack
The WPF text rendering stack has been completely replaced. This change brings improvements to text rendering configurability, clarity, and support for international languages. The new text stack now supports explicitly selecting aliased, grayscale, or ClearType rendering modes. The text stack now supports display-optimized character layout, to produce text with sharpness comparable to Win32/GDI text. The new text stack allows optimizing text hinting and snapping for either animated or static text. The new text stack also supports fonts with embedded bitmaps to be substituted for smaller font sizes, allowing many East Asian fonts to render with sharpness comparable to Win32/GDI text.
-
Selection and Caret Customization
You can now specify the brush that paints the selection and caret for input and reading controls, such as TextBoxRichTextBox, and FlowDocumentReader. There are two new properties on TextBoxBase:
-
SelectionBrush allows you to create a brush for highlighting selected text.
-
CaretBrush allows you to change the brush that paints the cursor.
-
-
Bind to commands on InputBinding.
You can bind the Command property of an InputBinding class to an instance that is defined in code. The following properties are dependency properties, so that they can be targets of bindings:
The InputBinding, MouseBinding, and KeyBinding classes receive data context from the owning FrameworkElement.
-
Bind to Dynamic Objects
WPF supports data binding to objects that implement IDynamicMetaObjectProvider. For example, if you create a dynamic object that inherits from DynamicObject in code, you can use markup extension to bind to the object in XAML. For more information, see the Binding Sources Overview.
-
Bindable Text Run
Run.Text is now a dependency property. The main advantage is that it now supports one-way bindings. It also supports other features of dependency properties, such as styling and templating.
Two features have been added to XAML browser applications (XBAPs).
-
HTML-XBAP Script Interop
You can now communicate with the Web page containing the XBAP when the application is hosted in a HTML frame. The XBAP can get deep access to the HTML DOM and can handle DOM events. For more information see BrowserInteropHelper.HostScript.
-
Full-Trust XBAP Deployment
If your XBAP requires full trust, the user will now automatically receive the standard ClickOnce elevation prompt when they install the application from the intranet or one of their browser's trusted sites.
For more information on both these features, see WPF XAML Browser Applications Overview.
The Windows 7 taskbar provides enhanced functionality that enables you to use the taskbar button to communicate status to a user and expose common tasks. New types in the System.Windows.Shell namespace provide managed wrappers for functionality in the Windows 7 taskbar and manages the data passed to the Windows shell. For example, the JumpList type allows you to work with Jump Lists and the TaskbarItemInfo type allows you to work with taskbar thumbnails.
WPF dialog boxes on Windows 7 and Windows Vista now support the look and feel of the Windows 7 and Windows Vista style, which includes custom places. For more information, see the FileDialogCustomPlace class.
자세한 내용은 http://msdn.microsoft.com/library/bb613588.aspx 를 참조해 보시기 바랍니다.
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
WPF 기반으로 Touch Application을 제작할 수 있는 방법을 소개하고 있습니다. 총 6단계만 따라하면 되는데 기본적으로는 Windows 7 기반에 Visual Studio 2010으로 작업하는 것을 전재로 하고 있습니다.
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
닷넷 프레임웍이 4.0으로 업그레이드 되고 있습니다. 1.x 혹은 2.x 버전의 프레임웍을 사용해서 개발된 시스템들의 버전업을 생각하고 있는 업체들이 많을 것 같습니다.
닷넷 프레임웍의 경우 2.0이상의 프레임웍이라면 업그레이드 이슈가 거의 없는 것으로 알려져 있습니다. 아래의 링크는 알려져 있는 이슈들을 잘 정리하고 있는 링크로 계속 업데이트 될 것으로 기대 됩니다.
http://msdn.microsoft.com/library/ee941656.aspx
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
댓글을 달아 주세요
.NET Framework는 Microsoft의 개발 플랫폼 중에 핵심이라고 할 수 있습니다. .NET과 관련한 짧은 동영상 강좌를 올릴 계획이지만 우선 .NET 4.0의 새로운 기능들은 위의 링크에서 확인해 보시기 바랍니다.
여기서는 어플리케이션 호환성과 배포, 그리고 새로운 기능이 포함된 코어와 MEF, 병렬 컴퓨팅에 대한 지원 그리고 네트워크, 웹, 클리이언트,데이타 등 전반적인 향상을 언급하고 있습니다.
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
C# 4.0이 정식으로 나온지도 벌써 1주일이 넘어갑니다.
해외에서는 관련된 글들이 괘많이 나오고 있는데 국내에서는 상대적으로 많이 없습니다. (아~ 이래서 영어를 꼭 공부해야만 하는 것일까요?)
C# 4.0에 대해서 다음과 같이 정리하는 글이 있어서 소개해 드립니다.
1. Dynamic
2. Convariance and Contravariance
3. Optaionl Parametes.
4. Named Arguments.
5. Improved COM interop.
자세한 글은 다음의 링크에서 보실 수 있습니다.
http://blogs.msdn.com/csharpfaq/archive/2010/04/12/get-ready-for-c-4-0.aspx
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)
그리고 주의 할 사항은 Visual Studio 2010 RC 버전에서 사용 가능 했던 Windows Phone Developer Tool CTP 버전이 이번에 출시된 Visual Studio 2010 RTM 버전에서는 동작하지 않는다고 합니다.
즉 죽어도 지금 당장 Windows Phone과 관련된 개발을 해 보고 싶은 분은 다음과 같은 세 가지 방법이 있습니다.
- Visual Studio 2010 RC를 좀 더 사용해 본다.
- Virtual PC에 Visual Studio 2010 RC를 사용한다.
- 별도의 PC에 Visual Studio 2010 RC 버전을 설치한다.
조만간 RTM버전에 맞는 버전이 출시 될 것으로 보이기 때문에 조금 기다려 보는 것도 좋을 성 싶습니다. ^^
개발자를 위한 IT블로그 영욱닷컴(http://www.YoungWook.com)

댓글을 달아 주세요