Presentation is loading. Please wait.

Presentation is loading. Please wait.

CPSC 481 – Week 11 Expression Blend Sowmya Somanath (based on tutorials by Bon Adriel Aseniero and David Ledo)

Similar presentations


Presentation on theme: "CPSC 481 – Week 11 Expression Blend Sowmya Somanath (based on tutorials by Bon Adriel Aseniero and David Ledo)"— Presentation transcript:

1 CPSC 481 – Week 11 Expression Blend Sowmya Somanath ssomanat@ucalgary.ca (based on tutorials by Bon Adriel Aseniero and David Ledo)

2 Announcements Final project submission due Dec. 4. Check your assignment sheet for a description of what’s required. If you need help or have questions regarding your project, please let me know! Talk to me before/after class Email me: ssomant@ucalgary.cassomant@ucalgary.ca Set up an in-person meeting

3 Expression Blend Expression Blend, Visual Studio, and.NET provide a very compelling and seamless design and development workflow. Rapidly iterate on both the user experience and core architecture, evolving your ideas quickly from initial prototype through to completed project.

4 Expression Blend Enables you to build rich and compelling applications for the desktop and web. Enables you to take full advantage of the underlying power of the platform. Rapid prototyping without writing code 3D transformations Pixel effects (blur, glow, ripple, etc.) Animation Visually edit the template of a control easily on the design surface, redesigning it to perfectly fulfill the function it will play within an application.

5 Expression Blend Enables you to build rich and compelling applications for the desktop and web. Enables you to take full advantage of the underlying power of the platform. Rapid prototyping without writing code 3D transformations Pixel effects (blur, glow, ripple, etc.) Animation Visually edit the template of a control easily on the design surface, redesigning it to perfectly fulfill the function it will play within an application. A BETTER DESIGNER!

6 Basic Idea Design your interface in Expression Blend Code the logic and interaction in Visual Studio

7 Starting Expression Blend

8 Starting a Project Click on New Project if you want to start a project directly in Expression Blend. Choose this one for this tutorial. Click on Open Project if you want to use an existing project (which may have been created in Visual Studio).

9 Starting a Project Select WPF Application Name it Hit OK

10 The Interface Project/Solution viewer

11 The Interface Tools

12

13 The Interface “Drawing Board”

14 The Interface Objects and Timeline “Layers”

15 Objects This is where you see your Visuals Arranged as a reversed stack Visuals on the bottom are on top Also true for Visuals inside Containers which are inside another Container Think Layers and Groups

16 The Interface Object Properties

17 Properties Selecting a visual here… …brings up that visual’s properties in here.

18 Properties Brushes Properties Used to edit the background fill, border stroke, opacity, etc. of a visual Uses RGB and alpha values or the hex value of a colour Nice resource for named colours: http://cloford.com/resources/colo urs/500col.htm http://cloford.com/resources/colo urs/500col.htm

19 Properties Appearance Used to change the appearance of a visual by setting its visibility and opacity, or adding effects to it such as blur or dropdown shadows

20 Properties Layout Used to change how the window will appear on the screen, or how a visual will flow with other visuals in a container. Use this to edit sizes, positions, and alignments.

21 Properties Some properties are only available to specific types of visuals. E.g., only windows can have an icon property or a window state property (maximized, minimized, etc.). These properties can be set in the Code Behind as well.

22 Coding Choose View – Split View To view the XAML Editor

23 Coding You can code directly in Expression Blend, BUT it is highly suggested to use Visual Studio in parallel with it for coding. Why? Because you gain access to Visual Studio’s rich set of tools for coding (refactor, debugger, etc.). Use Expression Blend for designing the GUI, use Visual Studio to code the logic.

24 Hands On We will create a picture viewer application using Expression Blend and Visual Studio. Functionalities: 1.Home screen 2.Page to see all photos 3.View each photo

25 PicturO

26 Window Select the window Change its width & height to 800x600

27 Window Change the Background colour to #FF353535 Select ‘Background’

28 Window WindowStyle = None ResizeMode = NoResize Title = “PicturO”

29 Window Rename the grid contained in the window to ‘MainGrid’. Insert a new grid within it, call it ‘SplashGrid’.

30 Grids For both the MainGrid and SplashGrid: Set the width and height to ‘Auto’ Set the HorizontalAlignment and VerticalAlignment to ‘Stretch’

31 Start Screen

32 Start screen Path: BackgroundShape TextBlock: P TextBlock: AppTitle Button: ViewPhotosButton Button: ExitButton Button: MinimizeButton

33 Animation Can be done in C# WPF using Storyboards. Can also be done easily using Expression Blend.

34 Animation On the “Object & Timeline” tab, click + This will add a Storyboard Resource

35 Animation As the Animation starts to record… Edit a Visual’s property at a starting time then add a new Keyframe to the ending time and put in the new value of the property.

36 Controls Visuals such as Buttons, Containers, and Shapes are called Controls. They have an underlying template specifying how they should look. The template is customizable.

37 Custom Button Add a Button to your window Right click -> Edit Template -> Create Empty Call it ‘TileButton’ You can then apply this template to other buttons later on

38 Custom Button Good Interfaces should be responsive, so let us add feedback to our custom button when it gets hovered over. Add these: Cover: A transparent rectangle on top of the button Content: The content (text) presenter HoverColor: The coloured rectangle that shows up when the button gets hovered over

39 Custom Button On the Triggers tab, add the IsMouseOver = true event This means that every time the mouse is over our button, the animation will be triggered Click ‘+ Property’ Change the second and third dropdowns to: ‘IsMouseOver’ and ‘True’ respectively

40 Custom Button On the first row under the Activated when tab, select grid on the first dropdown box

41 Custom Button Click + on the Actions when activating tab Add a new Storyboard The Storyboard will then start recording

42 Custom Button Now our button gives us feedback Add an event to it that closes the app in Visual Studio ExitButton.Click this.Close();

43 Applying our Template Add a minimize button to our app (if not already there) Right click on the button -> Edit Template -> Apply Resource -> choose your template Add an event to it MinimizeButton.Click this.WindowState = WindowState.Minimize

44 Photos

45 Create a new grid This is where we will show our photos It has a ScrollViewer that has a UniformGrid inside of it called PhotoViewerGrid

46 Visibility Separate our different views into Grids (if not already done) If SplashGrid is visible, then PhotoGrid should be hidden, and vice versa

47 Photo Tile Here, we will need to load photos into tiles which we call PhotoTiles Create a Grid, and inside it, add an Image control and a TextBlock The Image control will contain our photo The TextBlock will contain the title of the photo

48 Photo Tile Great! We now have a PhotoTile But wait… Do we really want to do this for every photo we have? No! Use UserControls

49 User Controls User-defined Controls (e.g., CommentBox) that can be used as templates within a project. Useful for when you have multiple things that should look the same but have different content.

50 Photo Tile Right click and turn our PhotoTile grid into a UserControl We can now reuse it for many photos!

51 Loading Photos On the Code Behind… Create a Class called PhotoDB This class will have a LoadPhotos method and will contain all of the paths to our photos in a string array

52 Loading Photos In PhotoDB.cs: class PhotoDB { private string[] photos = { }; public string[] Photos { get { return this.photos; } public void LoadPhotos(string path) { try { photos = System.IO.Directory.GetFiles(path); } catch (Exception) { // Do nothing }

53 Loading Photos We will then access the photos in this class and create PhotoTileControls for each of them, then add them to the PhotoViewerGrid

54 Viewing a Photo

55 Again, we will create a UserControl for this Start with drawing a grid that has TextBlock, an Image control, and a StackPanel for comments Turn it into a UserControl called PhotoPageControl

56 Viewing a Photo Go to the code where we create each PhotoTileControl and subscribe to its MouseDown event Add this

57 Viewing a Photo Collapse all of the other views Create an instance of the PhotoPageControl and populate it with the data from the PhotoTileControl

58 Viewing a Photo Now, clicking on a PhotoTile will open up a photo page. But we’re stuck! We can’t go back to the photo list from the photo page. Solve this by adding a back button inside the PhotoPageControl.

59 Viewing a Photo

60 Extending this… To allow for comments within the PhotoPageControl, create a CommentBox UserControl that has TextBlocks for the name of commenter and the comment, and a delete button. Add TextBoxes so that when someone types on it and presses Enter (or a send button), it will generate a CommentBox with the respective data from the TextBox fields. Append the CommentBox to a Scrollable StackPanel within the PhotoPageControl.

61 Extending this… NO! You cannot submit this example app as your project. You may reuse code from this example, as long as you cite it. Hope you learned something new!

62 Next Week Open session Attendance is optional (but beneficial) Ask questions about your projects (design, coding, etc.) Your chance to make design decisions with me


Download ppt "CPSC 481 – Week 11 Expression Blend Sowmya Somanath (based on tutorials by Bon Adriel Aseniero and David Ledo)"

Similar presentations


Ads by Google