Yesterday’s release of Visual Studio 2012 and Blend for Visual Studio
2012 marks the beginning of a new era. In some ways, VS2012 and Blend
are incremental releases, adding even better support for building
enterprise and consumer apps and services for the desktop and the web.
However, in one very important way, the release of VS2012 and Blend,
together with the release of Windows 8 earlier this month, signals a
whole new focus for the platform - that of touch-centric tablets - and
with it, a whole new way to package and distribute apps for the Windows
operating system - the Windows Store. If Windows 8 sells even
half of...
In Part 3 of this little mini-series on data binding in Windows 8 we looked at Element Binding. Today, we’ll take a look at Data Conversion. At times the data in your business object (the source for your binding) and the target UIElement may not have an exact type match. For example, if your Employee class wants to keep track of the start date for each Employee, a sensible way to do so is with a DateTime object. However, when we display that data we’ll want to use a Text object, and we may not want the entire default conversion of...
While I was in London last week, Telerik’s UK
Country Manager and I took some time to visit the Google
Campus, a massive co-working and startup incubation space. There are six floors
of co-working space where you can apply to be a resident if you are a startup based
in London and an awesome cafeteria/coffee shop where anyone can come in for the day.
On the top floor is Google’s offices. Even though Telerik has a London office, we
registered online and spent a day working at the co-work space, mostly to get a feel
for the co-work space and check out the scene. (Also, Telerik’s KendoUI was...
If you missed all the excitement on the interwebs yesterday, you should know that Windows 8 officially went RTM. My good friend and prolific animated GIF pundit John Bristowe posted this apt metaphor of the frenzy over at MSDN. You can count me in the pile of chaos...
You can tell the VS team has an appreciation for Test Studio
because they’ve went with our color scheme for the VS 2012’s artwork: As you may already know Visual Studio 2012 is here. And the
answer to the question you’re probably asking yourself is: “Yes, Telerik’s Test Studio fully
integrates with Visual Studio 2012” That’s right – VS 2012 is now officially part of the Test
Studio-integrated family (alongside VS 2008 and VS 2010). Hooray! Testing-wise the major change in Visual Studio 2012 is that Test
View is gone. Instead we have the Test Explorer. We recommend that you checkout
this...
In this post, I will explore creating a line chart using the RadCartesianChart from the Telerik Windows 8 UI Controls. You can Download Telerik Widows 8 Controls here. Figure 1 shows the chart we wish to build. This is a linear chart built with a RadCartesianChart. It represents revenue for the last six months of 2012, The best way to approach building a line chart (or any chart) is to start with the data you wish to display. In this case, we will use mock data representing Monthly Revenue earned from July through December 2012. The class that will hold our data...
The highly anticipated Visual Studio 2012 has just been released to manufacturing! Just as quickly as we responded to the Beta version of your favorite IDE, we are now proud to announce that we are ready to bring OpenAccess ORM to the RTM with our dedicated Q2 2012 SP2 version. OpenAccess ORM is ready to help you get started by generating all the needed code for your Data Access Layer in any Visual Studio 2012 RTM project. You can start right away, utilizing our project templates already fine-tuned for VS 2012 and .NET 4.5. Choose either Fluent Mapping project or...
Now that Windows 8 RTM is available to developers, we have prepared a BETA 2 update of our Windows 8 UI suite. This update is fully compatible with the latest Win8 bits as well as it adds several new components/features that we believe will add even more value to the suite. I can’t wait to share what’s new, so let’s get straight to the list: HTML – Date/Time pickers Our commitment is to deliver same components and user experience regardless of the platform – be it XAML or HTML. Following this commitment we have added DatePicker and TimePicker components to the HTML part of the suite...
It's an exciting time for developers using Visual Studio 2012 or targeting Windows 8. With recent announcements regarding availability of these products, the obvious question of support with Kendo UI is being asked by developers. Rest assured, the team building Kendo UI has been working hard...
In my previous post, I discussed the three modes of DataBinding for Windows 8. Today we’ll take a brief look at binding not to data, but rather binding one UI element to the value of another. In this example, we’ll bind the IsActive property of the ProgressRing to the IsChecked property’s value in a CheckBox. <StackPanel>
<StackPanel
Orientation="Horizontal"
HorizontalAlignment="Left"
>
<TextBlock
...