strange behavior occurs below conditions.
- ExtendedListView.SelectionMode=Multiple
- Select single item
- Insert an item to above selection.
strange behavior occurs below conditions.
extern "C" | |
{ | |
struct PluginVector3 | |
{ | |
double x; | |
double y; | |
double z; | |
}; | |
__declspec (dllexport) HRESULT Initialize(); |
<!-- | |
This XAML and ExtendedListView 0.0.5.2, I got this exception. | |
-- | |
System.ArgumentException: Value does not fall within the expected range. | |
at Windows.UI.Xaml.FrameworkElement.MeasureOverride(Size availableSize) | |
-- | |
--> | |
<Page | |
x:Class="App52.MainPage" | |
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
public class ScrollBarValueProxy : DependencyObject | |
{ | |
public event EventHandler<double> ValueChanged; | |
public static readonly DependencyProperty ValueProperty = DependencyProperty.Register( | |
"Value", typeof(double), typeof(ScrollBarValueProxy), new PropertyMetadata(default(double), OnValueChanged)); | |
public double Value | |
{ | |
get { return (double)GetValue(ValueProperty); } |
var R = require('nanka-module'); | |
var client = new R(); | |
// get/set | |
client.set('a', 100); | |
client.get('a', R.print); | |
// co使ってこう書きたい | |
// yield client.set('a', 100); | |
// yield client.get('a'); |
/* | |
using System; | |
using System.Collections.Generic; | |
using System.Collections.ObjectModel; | |
using System.Collections.Specialized; | |
using System.Linq; | |
using System.Reactive.Linq; | |
using System.Reactive.Subjects; | |
using System.Threading; | |
*/ |