自定义博客皮肤VIP专享

*博客头图:

格式为PNG、JPG,宽度*高度大于1920*100像素,不超过2MB,主视觉建议放在右侧,请参照线上博客头图

请上传大于1920*100像素的图片!

博客底图:

图片格式为PNG、JPG,不超过1MB,可上下左右平铺至整个背景

栏目图:

图片格式为PNG、JPG,图片宽度*高度为300*38像素,不超过0.5MB

主标题颜色:

RGB颜色,例如:#AFAFAF

Hover:

RGB颜色,例如:#AFAFAF

副标题颜色:

RGB颜色,例如:#AFAFAF

自定义博客皮肤

-+
  • 博客(63)
  • 收藏
  • 关注

转载 The Practical Guide to Empathy Maps: 10-Minute User Personas

That’s where the empathy map comes in. When created correctly, empathy maps serve as the perfect lean user persona:They quickly visualize user needs (especially to non-designers)They fi...

2016-09-06 06:58:00 205

转载 Where product development should start

We all need to know our customers in order to create products they’ll actually buy. This is why theminimum viable audienceidea is so powerful.It doesn’t start with the product. It starts with...

2016-09-06 06:53:00 153

转载 Essential controls for web app

AUTO-COMPLETE/AUTO-SUGGESTAuto-complete using VaadinOffer auto-suggest or auto-complete to help your users increase efficiency and reduce errors. You can even create agrouped a...

2015-06-23 06:07:00 388

转载 DoD and DoR

Definition of ReadyUser Story is definedAcceptance criteria(functional and non-functional requirement) is definedUser story has been sizedUX wireframes have been providedTeam is comfo...

2015-06-23 05:55:00 254

转载 Code of Conduct

v转载于:https://www.cnblogs.com/MinieGoGo/p/4594471.html

2015-06-23 05:55:00 235

转载 GOOD MEETINGS CREATE SHARED UNDERSTANDING, NOT BRDS!

Deliverables and artifacts were a focal point of BA work during the early part of my career. If I look back, it seemed the primary purpose of a BA was to generate paper—lots of p...

2015-04-21 07:11:00 144

转载 USER STORIES AND USE CASES - DON’T USE BOTH

We’re in Orlando for a working session as part of the Core Team building BABOK V3 and over dinner this evening we got to discussing the relationship between user stories and use cases (it wasn'...

2015-04-15 06:55:00 221

转载 HOW TO RUN A SPRINT PLANNING MEETING (THE WAY I LIKE IT)

This is a sample agenda for a sprint planning meeting. Depending on your context you will have to change the details, just make sure the outcomes stay the same.Meeting purpose:Plan and pr...

2015-04-07 09:19:00 186

转载 ACCEPTANCE CRITERIA FOR USER STORIES

One of the teams I have recently coached quickly got a grasp of how to phrase user stories but found it hard to relate to the concept of acceptance criteria.I wrote this short FAQ as an attempt...

2015-04-07 09:12:00 379

转载 数据库分页

String sql= "select * from " + TABLE_NAME + " Limit "+String.valueOf(PageSize)+ " Offset "+String.valueOf(pageID*PageSize); /**读取指定ID的分页数据*SQL:Select*FromTABLE_...

2014-11-26 11:54:00 95

转载 Phone Font Size

This table lists and describes the various font sizes that can be applied. Attribute = FontSizeNameTypeDescriptionPhoneFontSizeSmallDouble18.667...

2014-09-16 11:03:00 96

转载 Hint when use HTTPAgilityPack

1- Read the usage policy of the website. I know this is the third time I mention that, but that tells you its important :)2- Always try to use the mobile website as it will generate a smaller htm...

2014-09-16 08:47:00 98

转载 How to parse HTML page data in Windows Phone

1. Navigate to pageWebBrowser controlbrowser.Navigate(new Uri("http://www.xxxx.com"));2. Understand navigation completed and content loadedWebBrowser.Navigation EventWebBrowser.LoadComp...

2014-09-16 08:36:00 96

转载 Windows Phone Sliding Effect

<Grid x:Name="ContentPanel" Grid.Row="1" Margin="12,0,12,0" Background="Red"> <Grid.RowDefinitions> <RowDefinition /> <RowDefinition /> ...

2014-09-16 07:30:00 135

转载 EaseMode

The following graphs demonstrate the different values ofEasingMode, wheref(t) represents the animation progress andtrepresents time.BackEaseBounceEaseCircleEaseCubicEaseElas...

2014-09-15 09:09:00 131

转载 Screen Orientation for Windows Phone

http://msdn.microsoft.com/en-us/library/windows/apps/jj207002(v=vs.105).aspx转载于:https://www.cnblogs.com/MinieGoGo/p/3964221.html

2014-09-10 13:05:00 95

转载 Docking Windows Phone controls to the bottom of a StackPanel

<Grid> <Grid.RowDefinitions> <RowDefinition Height="*" /> <RowDefinition Height="Auto" /> <Grid.RowDefinitions> <StackPanel>...

2014-09-10 06:47:00 132

转载 C# Questions

What's the difference between linkedlist and array?How do you implement linkedlist?What's the difference between virtual and abstract function?C# generic转载于:https://www.cnblogs.com/MinieG...

2014-06-13 09:51:00 117

转载 Handle Activation and Deactivation

http://msdn.microsoft.com/en-us/library/hh821027.aspx转载于:https://www.cnblogs.com/MinieGoGo/p/3488427.html

2013-12-24 05:43:00 145

转载 MVVMLight Messenging

Basically there are two possible ways to send a message, first using an overload of theRaisePropertyChangedand secondly by using theMessenger.Default.Sendcommand. For the address detail scree...

2013-12-18 10:43:00 115

转载 MVVM deep dive

You can get a different instance each time by passing a different key to the GetInstance method. However the instances will be cached, so if you do not want to keep them in the cache, you will ne...

2013-12-16 16:11:00 84

转载 Setting start page of Windows Phone dynamically through code

Essentially this one line of code will set the start page of the application. var navTo = new Uri("/Views/MainPage.xaml", UriKind.RelativeOrAbsolute); ((App)Current).RootFrame.Na...

2013-12-12 05:55:00 102

转载 EventToCommand is not found in MVVMLight

xmlns:Command="clr-namespace:GalaSoft.MvvmLight.Command;assembly=GalaSoft.MvvmLight.Extras.WP8"转载于:https://www.cnblogs.com/MinieGoGo/p/3464586.html

2013-12-09 05:44:00 162

转载 JSON value

JSON values can be:A number (integer or floating point)A string (in double quotes)A Boolean (true or false)An array (in square brackets) - []An object (in curly brackets) - {}null...

2013-12-06 09:20:00 142

转载 Messaging CorrelationID

TODO转载于:https://www.cnblogs.com/MinieGoGo/p/3455567.html

2013-12-03 12:20:00 95

转载 IDictionary<TKey, TValue> vs. IDictionary

Enumerating directly over an IDictionary<TKey,TValue>returns a sequence of KeyValuePair structs:public struct KeyValuePair <TKey, TValue>{  public TKey Key { get; }  public...

2013-12-01 16:04:00 130

转载 Perform UPSERT / INSERT OR UPDATE against a SQLite Database

Option 1: You can afford deleting the rowIn other words, you don't have foreign key, or if you have them, your SQLite engine is configured so that there no are integrity exceptions. The way to ...

2013-11-29 09:58:00 124

转载 MVVM Command Binding: InvokeCommandAction v.s. EventToCommand

This gives you the ability to create a trigger on an event and bind it to an ICommand on the view model.<Button> <i:Interaction.Triggers> <i:EventTrigger Even...

2013-11-27 17:09:00 224

转载 LongListSelector with bindable SelectedItem

using System.Collections.Generic;using System.Windows;using System.Windows.Controls;using Microsoft.Phone.Controls; namespace ExtendedControls{ public class ExtendedSelector : ...

2013-11-22 11:43:00 107

转载 Windows Phone Data Protection

To encrypt the PIN   // Convert the PIN to a byte[]. byte[] PinByte = Encoding.UTF8.GetBytes(TBPin.Text); // Encrypt the PIN by using the Protect() method. byte[] ProtectedPi...

2013-11-20 05:40:00 75

转载 DataContractJsonSerializer deserialize stream

var response = await httpClient.PostAsync(endpoint, new FormUrlEncodedContent(parameters)); var result = await response.Content.ReadAsStreamAsync(); var ...

2013-11-19 06:40:00 107

转载 HttpWebRequest Post callback

public void GetValueFromRequest(string postData) { var request = (HttpWebRequest) WebRequest.CreateHttp("http://login.test.geoop.com/oauth2/token"); ...

2013-11-19 04:58:00 120

转载 Sortable Observable Collection in C#

Sorting outside the collection protected override void OnNavigatedTo(NavigationEventArgs e) { if (Settings.AscendingSort.Value) { App.PictureList.Pic...

2013-11-17 16:18:00 116

转载 C# async

I/O should use async, asynchronous method can be achieved:message, delegate, multi-threadingThread-safe1. private void button_Click(object sender, EventArgs e) 2. { 3. ...

2013-11-14 09:49:00 88

转载 Getting the Device GUID

Sometime you may want to uniquely identify a Windows Phone, such as when you are implementing push notifications. The best way to identify a unique Windows Phone is through its device GUID.T...

2013-11-13 16:00:00 162

转载 Update UI from an asynchronous thread

One of the most common tasks you need to perform in a Windows Phone application is updating the UI from a separate thread.For example, you may be download some content asynchronously using a...

2013-11-13 15:50:00 88

转载 C# Closure

JavaScript Closurefunction f1(){  var n=999;  return function(){    alert(n); // 999 return n;  }} var a =f1(); alert(a());C# Closure static void M...

2013-11-13 06:13:00 93

转载 If A wants to use B

Find the place where B is used, and use C to call C.BRootFrame.Navigated += CheckForResetNavigation;ViewModelLocator.InitialiseRootFrame(RootFrame); public void InitialiseRootFrame(Ph...

2013-11-11 10:22:00 76

转载 Windows Phone Foreground Toast

Basically ToastPrompt is an UI component that derives from the Coding4Fun toolkit's abstract PopUp<string, PopUpResult> class.It is a kind of extended popup that runs in foreground, perfo...

2013-11-10 07:57:00 85

转载 Version=1.0.0.0, Culture=neutral, PublicKeyToken=null

What it is saying is, it found the DLL, but it couldn't find a type named "namespace.User" from within that DLL. It was expecting to find that type in that particular assembly, but did not.转...

2013-11-09 18:26:00 1864

空空如也

空空如也

TA创建的收藏夹 TA关注的收藏夹

TA关注的人

提示
确定要删除当前文章?
取消 删除