Great Ideas. Always Flowing.

We are not happy until you are happy. Client satisfaction guaranteed. Whatever your needs and requirements, we have the skills and resources for the job!

Popular Tags

Popular Tags...

Recently Viewed...

SnowCovered Top Sellers

Frustrated over the lack of customization for your user's registration fields? Dynamically setup your DNN Portal with custom registration fields, layout, questions, and other core integration options......

Ultra Video Gallery is a brother product of Ultra Media Gallery, UVG allows you to upload videos in various format and automatically encode them to flv or H264 format, you also can add videos from internet or record live videos from your webcam.

Build high performance, completely customizable data-entry forms and views driven by your DNN and external databases. New built-in tools make it a snap to quickly create data entry forms, data views, and even database tables. Plus, add your own HTML, CSS, Javascript, SQL commands, stored procedures,

The most advanced DotNetNuke shopping cart on the planet. Easy to use e-Commerce, Secure Shopping Cart Software and SEO friendly. B2C / B2B Ecommerce Sites.

One stop solution for events calendar and events registration! FREE DOWNLOAD is available now!

Introduction to Windows Phone 7

Introduction to Windows Phone 7:

Windows phone 7 is the new step by Microsoft in the world of mobile operating systems. Microsoft has been in this market with its Windows Mobile platform which was aimed at the Enterprise market and wasn’t that much famous. With operating systems like iOS and Android targeting every day smart phone users, capturing about more then 60% of the smart phone industry and continuously expanding, Microsoft decided to have a kick back and dive in with full momentum in the market again by launching a new mobile operating system meeting both Consumer market and enterprise market needs and named it Windows Phone 7.


Windows phone 7 was introduced for the first time in Mobile world Congress in Barcelona, Spain on 15th February 2010. The SDK was made available 6 months later on 16th September 2010.



Languages Supported By Windows Phone 7:

English

French

German

Italian

Spanish

Windows Phone 7 Market Place:

Like Apple’s App Store and Android Market, Windows Market Place is a platform for windows phone 7 developers and user to buy and sell applications, music, and video content. Currently Windows Market Place is available in following countries.


-          Australia

-          Austria

-          Belgium

-          Canada

-          France

-          Germany

-          Hong Kong

-          India

-          Ireland

-          Italy

-          Mexico

-          New Zealand

-          Singapore

-          Spain

-          Switzerland

-          Puerto Rico

-          United Kingdom

-          United States

Windows Phone 7 Development:

Windows Phone 7 development can be easily done by using Microsoft Technologies, it is very easy especially for .Net developers as they are already familiar with these technologies and can start writing applications quickly.


System Requirements:

 

Operating System

Windows® 7 (x86 and x64) – all editions except Starter Edition


Windows® Vista® (x86 and x64) with Service Pack 2 – all editions except Starter Edition


Hardware

2 GB of RAM


3 GB of free disk space on the system drive.


 DirectX® 10 Compatible or later graphics card with WDDM 1.1 driver.



Development Tools:

All the necessary development tools are available in one single package that can be download from here.


Following tools are included in this package.


-          Microsoft Visual Studio 2010 Express for Windows Phone

o   Visual Studio 2010 Express for Windows Phone is a specialized IDE for building Windows Phone 7 Applications.

-          Expression Blend 4

o   Expression Blend 4 is used to design Windows phone 7 Applications, you can create XAML based interfaces for applications.

-          Silverlight for Windows Phone

o   Framework to build Windows Phone 7 Applications

-          XNA Game Studio

o   Mobile games are always attractive. Windows Phone 7 Tools include XNA Game Studio to create exciting and attractive games for windows Phone 7.

-          Windows Phone Emulator

o   A simulator to debug and test your application and games on pc without requiring a real phone.

-          Phone Registration Tool

o   It is used to transfer your application on a real phone.

Windows Phone 7 Application Framework:

Windows Phone 7 will run on multiple phones so it defines a minimum set of hardware specifications that all phones must meet like Direct X Capable GPU, Camera, Multi touch Capacitive Display, GPS, Accelerometer, compass, proximity, light sensors etc .

Setting up the working Environment:

To create a windows phone 7 application you need to download Windows Phone Developer Tools from this link for free.

http://www.microsoft.com/downloads/en/details.aspx?FamilyID=04704acf-a63a-4f97-952c-8b51b34b00ce

You can first download vm_web.exe and then it will download all the required tools needed for windows phone 7 development.


Creating your first Windows phone 7 Application:

Now we will write a simple Hello World application for windows phone 7.


1 Go to Start and click Visual Studio 2010 Express.

2 Now click on Microsoft Visual Studio 2010 Express For Windows Phone

It will take some time for the first time when you start Visual Studio 2010 Express.

3 Now Click on New Project


4 When you click on New Project, A new window opens. Here we have to do three things

            4.1 Choosing a template to write an application either SilverLight or XNA Framework.

            4.2 Selecting Application Type

            4.3 Naming your application

5 We have chosen Silver Light for windows phone 7 as template, Windows Phone Application as type and named our application MyAppHelloWorld.

6 Visual Studio will create a project for you and open a window which is divided in two three parts.

In the solution explorer pain you can easily see your project files.

Lets take a look at some of the important files that are generated and how they are essential in our Hello World Application.

a-      App.xaml

b-      MainPage.xaml

c-      ApplicationIcon.png

d-      Background.png

e-      SplashScreenImage.jpg


App.xaml:

                 

            App.xaml is file which contains information about the application it self or in other words its basically a meta data for the application. All XAML related controls to your application are declared here. Global variables can also be declared in this file.

           

            Code:

                        <Application

    x:Class="MyAppHelloWorld.App"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"      

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone">


    <!--Application Resources-->

    <Application.Resources>

    </Application.Resources>


    <Application.ApplicationLifetimeObjects>

        <!--Required object that handles lifetime events for the application-->

        <shell:PhoneApplicationService

            Launching="Application_Launching" Closing="Application_Closing"

            Activated="Application_Activated" Deactivated="Application_Deactivated"/>

    </Application.ApplicationLifetimeObjects>


</Application>



MainPage.xaml:

            Mainpage.xaml is the file that contains the layout for your applications screen, so basically in this file you declare all the UI elements and different layouts for your application.


            Code:

                        <phone:PhoneApplicationPage

    x:Class="MyAppHelloWorld.MainPage"

    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"

    xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

    xmlns:phone="clr-namespace:Microsoft.Phone.Controls;assembly=Microsoft.Phone"

    xmlns:shell="clr-namespace:Microsoft.Phone.Shell;assembly=Microsoft.Phone"

    xmlns:d="http://schemas.microsoft.com/expression/blend/2008"

    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"

    mc:Ignorable="d" d:DesignWidth="480" d:DesignHeight="768"

    FontFamily="{StaticResource PhoneFontFamilyNormal}"

    FontSize="{StaticResource PhoneFontSizeNormal}"

    Foreground="{StaticResource PhoneForegroundBrush}"

    SupportedOrientations="Portrait" Orientation="Portrait"

    shell:SystemTray.IsVisible="True">


    <!--LayoutRoot is the root grid where all page content is placed-->

    <Grid x:Name="LayoutRoot" Background="/portals/0/Transparent">

        <Grid.RowDefinitions>

            <RowDefinition Height="Auto"/>

            <RowDefinition Height="*"/>

        </Grid.RowDefinitions>


        <!--TitlePanel contains the name of the application and page title-->

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">

            <TextBlock x:Name="ApplicationTitle" Text="MY First Windows Phone 7 App" Style="{StaticResource PhoneTextNormalStyle}"/>

            <TextBlock x:Name="PageTitle" Text="Hello World " Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>

        </StackPanel>


    <!--Sample code showing usage of ApplicationBar-->

    <!--<phone:PhoneApplicationPage.ApplicationBar>

        <shell:ApplicationBar IsVisible="True" IsMenuEnabled="True">

            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button1.png" Text="Button 1"/>

            <shell:ApplicationBarIconButton IconUri="/Images/appbar_button2.png" Text="Button 2"/>

            <shell:ApplicationBar.MenuItems>

                <shell:ApplicationBarMenuItem Text="MenuItem 1"/>

                <shell:ApplicationBarMenuItem Text="MenuItem 2"/>

            </shell:ApplicationBar.MenuItems>

        </shell:ApplicationBar>

    </phone:PhoneApplicationPage.ApplicationBar>-->


</phone:PhoneApplicationPage>

              

You can easily see that we have changed the following line of the code in our MainPage.xaml

To change application title to “My First Windows Phone 7 App”:

<TextBlock x:Name="ApplicationTitle" Text="MY First Windows Phone 7 App" Style="{StaticResource PhoneTextNormalStyle}"/>


To Change Page Title to “Hello World”:

<TextBlock x:Name="PageTitle" Text="Hello World " Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>

              


ApplicationIcon.png:

            The application icon in png format.

Background.png:

            The application background resource in png format.

SplashScreenImage.jpg

The jpg resource that will be used as a splash screen when the application gets started.
Now our target is to make a hello world application. For this we have changed the application title and page titles to our custom titles. As we have changed the Application title text to “My First Windows 7 App” and page title to “Hello World”.


<!--TitlePanel contains the name of the application and page title-->

        <StackPanel x:Name="TitlePanel" Grid.Row="0" Margin="12,17,0,28">

            <TextBlock x:Name="ApplicationTitle" Text="MY First Windows Phone 7 App" Style="{StaticResource PhoneTextNormalStyle}"/>

            <TextBlock x:Name="PageTitle" Text="Hello World " Margin="9,-7,0,0" Style="{StaticResource PhoneTextTitle1Style}"/>

        </StackPanel>

8 Save the project.

9 Your first windows phone 7 application is ready to run. Now you can select windows Phone 7 Emulator from the top pane to run your application.

10 Press start debugging button.

It will take some time to load your application

Here it is, your first windows phone 7 application running successfully on emulator.

You can download the complete source code of the above application from here.

Feedback Comments

Feedback

DNN Modules

DotNetNuke Modules


Data Springs offers cost-saving packages that fit your needs:

Purchase the Collection 6.0

Data Springs Collection 6.0

An entire tool chest to quickly build websites and construct complex, powerful, and relevant workflow. Elevate your design with custom registration, forms, displays, reports, user management, payments, Google maps,, SQL updates, and so much more!

Best Value!  Includes all DotNetNuke modules by Data Springs.

$ 495.00

Data Springs User Management Suite 3.0

All the tools you need to enhance user & profile management from A to Z!.  A comprehensive package with 5 feature-packed modules that offer extensive admin controls and easy user interface geared towards an effective and growth-oriented site!  .... more

 

Includes:  Dynamic Registration     Dynamic Login   ♦   Interactive User Import     Dynamic User Directory   ♦   Renewal Reminder    A value of more than $630.00!

 $ 369.00

 

 

Check out all our individual modules!

 

 View Dynamic Registration

Dynamic Registration 5.0 (new release on 6/12/2013)

Need custom fields and workflow for your registration? Get all the power and ease of use to create the registration and profile management just the way you want it... more

$ 199.00

View Dynamic Forms

Dynamic Forms 4.1 (released 5/16/2012)

Whether it's for marketing, sales, contact forms, scheduling, information requests, surveys, or to simply better understand your customer needs, the possibilities for creating powerfully effective forms are now easy and endless! ... more

$ 195.00

 

Dynamic Views 3.1 (new on 2/7/2013)

Now have an easy yet feature-rich reporting module with custom defined display templates and unlimited search options from  Dynamic Forms or any data source like a table, view or custom query!  ... more

$ 169.00

 View Dynamic Login Module

Dynamic Login 4.1 (released 10/19/2011)

Add pizazz and functionality to your site login! Dynamic Login gives you custom templates, localization, redirection rules, SQL Validation, and Single SignOn. Want more? How about Facebook Connect, LinkedIN, and Twitter, too? Your login has never been so exciting!.   ... more

$ 149.00

 View Interactive User Import

Interactive User Import 3.0 (released 8/17/2011)

Interactive User Import provides you with the functionality to easily and quickly import users into DotNetNuke and Dynamic Registration, through a streamlined and well-documented wizard that includes many advanced features... more

$ 149.00

 View Dynamic User Directory

Dynamic User Directory 4.1 (released 4/26/2012)

The perfect compliment for extending your portals users and community! An essential ingredient for managing dynamic user information, is being able to sort key fields and create useful user directories and custom report information... more

$ 179.00

 View Renewal Reminder

Renewal Reminder 1.3

Renewal Reminder provides you with the functionality to setup email notifications for users that their security role will soon expire. After installing your renewal / security role reminder module you can now setup scheduled notifications to be distributed to your users... more

$ 129.99
 View Opt In Email

Opt In Email 5.0 (new on 4/17/2013)

'Relationship Building' and 'Communication' are two essential nuts and bolts for a business to prosper. This module allows you to bridge both of these and easily generate continuous awareness of your web site, products and services. Your prospects and customers will greatly appreciate this feature... more

$ 179.00

 View Tailored Text

Tailored Text 3.0

Personalization allows you to go the extra mile in communicating or connecting one to one with your clients. Leverage the power personalized content on your DotNetNuke site... more

$ 109.99
 View Stock Quote

Stock Quote 1.2

Giving your site visitors relevant information is critical. With the Data Springs Stock Module you can provide your users with up to date financial information... more

$ 109.99
 View Presentation Archive

Presentation Archive 2.0

With so much content on your web site, its important to give users an easy method for finding and retrieving content. Presentation Archive allows you to categorize, organize and present content within your DotNetNuke site for presentations, educational material, videos, and almost any document... more

$ 124.99
 View Real Estate

Real Estate 2.3

Real Estate 2.3 is a feature rich and user-friendly module that allows your portal users the ability to create real estate listings on your site... more

$ 149.99
 View Dynamic Image Rotator

Dynamic Image Rotator 3.3

Dynamic Image Rotator displays selected images and then rotates between the images using the Adobe® Flash® platform.  Several extended and optional features allow you to select the time to rotate each image, fade between images, and also display the images in either sequental or random order... more

$49.99
 View Info Pics Gallery

Info Pics Gallery

The Info Pics Gallery Module allows you to display thumbnail pictures with information to the user about each picture, along with a detailed description regarding the set of pictures and several other optional links... more

 $ 69.99
 View Testimonials Module

Testimonials

The Testimonials Module allows you to display customer testimonials on your site, as well as an easy method for users to submit testimonials about your web site, services, or products... more

 $ 49.99
 View Dynamic Info Cube

Dynamic Info Cube

Take your web site out of the box! Looking for a creative and interesting way to showcase information and content on your site? With millions of web sites offering information you need a fun way to display information and the solution is Dynamic Info Cube... more

$ 99.95
 Search Engine Optimization Cloud Module for DotNetNuke

Dynamic Tags

Nearly every web site developer would agree that search engine optimization is one of key aspects to a successful web site. Part of search engine optimization requires providing search engines that crawl your web site with appropriate and meaningful content... more

$ 69.99
 View Page Tags

Page Tags

'Page Tags' pulls in search terms that users searched to find the current page. There are many benefits to displaying these search words that delivered the user to the site, find our more details ... more

$ 59.99
 Random Rounded Images

Random Rounded Images

Random Rounded Images is an easy to use upgraded version of the images module included with DNN. With RRI, you can select multiple images to display randomly when the module loads. For example, you can add 10 images to the module, and each time you refresh or load the page one of those images will... more

$ 49.99
 View Back on Track

Back on Track

Giving your site visitors fast access to areas of interest is vital to your web site's ease of use and ultimately - sales potential... more

$ 99.99
 

Dynamic News Ticker 2.0

Dynamic News Ticker allows you to scroll through news items in a horizontal or veritical direction with administrative features that allow you to easily customize the look of your news ticker. Each instance of Dynamic News Ticker can be set up to have different sizes, scroll directions, scroll speed... more

$ 39.00
 View Quick Poll

Quick Poll

Give your users a voice, while also providing an important way for you to gather opinions from your users and measure visitors' responses to questions on your site! Polls are significant because they can provide a way for your web site visitors to share ideas and vote on topics of your choosing... more

$ 39.99
 View Flash Contacts

Dynamic Contacts 2.0

Dynamic Contacts is the fastest and easiest way you can help visitors of your website connect with your key personnel... more

$ 79.99
     

 

 

An error has occurred. Error: Back on Track - Track Pages is currently unavailable.
 
 

Join our mailing list...

Get current news and events the easy way
Subscribe Me

Recent Blogs...

 
Copyright 2005 - 2011 by Data Springs, Inc.
 
  • film izle
  • 720 izle
  • film
  • sinema izle
  • film makinesi
  • T�rk�e dublaj film
  • film izle
  • film izle
  • baglan film izle
  • sinema izle
  • 1080 film izle
  • film mercegi