Nikita Tsukanov
303b6c1586
Remove ReactiveUI usage from sample apps
5 years ago
Steven Kirk
aa48b5733e
Replaced LogToDebug with LogToTrace.
Calls to `System.Diagnostics.Debug` are removed in release builds meaning nothing was getting logged.
Fixes #4901
5 years ago
Giuseppe Lippolis
919c1edde4
Remove warning sample
5 years ago
Steven Kirk
55868ce690
Remove serilog.
6 years ago
Benedikt Schroeder
21eda0db12
Revert removal of Application.Initialize
7 years ago
Benedikt Schroeder
1bb3156950
Introduce StartupEventArgs and ExitEventArgs
7 years ago
artyom
a66a2d33aa
Add missing usings
7 years ago
Jumar Macato
7b1c9bde18
Replace namespaces accordingly; Rename projects on main sln file.
8 years ago
Jumar Macato
def7da4bb2
Rename Sample projects to avoid confusion with the CI tests.
8 years ago
Steven Kirk
03621a8664
Added AppBuilder methods for logging.
You can now set up serilog logging to `Debug` or `Trace` by calling e.g.:
```
AppBuilder.Configure<App()
.LogToDebug()
.UsePlatformDetect();
```
The methods accept an optional `level` parameter to control the minimum log level.
8 years ago
Jeremy Koritzinsky
dff3031e20
Upgrade ReactiveUI to the v8 alpha nuget package so we don't need to maintain our own fork. Avalonia.ReactiveUI only registers the MainScheduler, and it does so via a call to UseReactiveUI on AppBuilder.
Update Rx.Net dependency to match reactiveui's dependency on Rx.
Removed ReactiveUI dependeny in BindingTests.
Updated BindingTest sample to use the new reactiveui APIs.
Update samples to use current ReactiveUI APIs.
Fixed bug I introduced into tests.
Remove RxUI submodule info from .gitmodules
9 years ago
Jeremy Koritzinsky
5ec7b33a1a
Revert "Upgrade ReactiveUI to the v8 alpha"
9 years ago
Jeremy Koritzinsky
35c82ecac5
Updated BindingTest sample to use the new reactiveui APIs.
9 years ago
Nikita Tsukanov
ee37ab8df4
Added UsePlatformDetect
10 years ago
Nikita Tsukanov
e14ac5742f
RegisterServices should be called by AppBuilder
10 years ago
Steven Kirk
d79fc6bbd8
Added AppBuilder
Use AppBuilder to configure the Application and make sure that
everything is set up in the correct order.
10 years ago
Steven Kirk
5be41985c3
Renamed Perspex -> Avalonia
10 years ago
Jason Jarvis
874e350126
Fixed up tab and name styling issues.
10 years ago
Jason Jarvis
97388703b3
Adding various other runtime application configuration extensions to improve boilerplate main startup. Updated most Sample applications to use simpler bootstrapping extensions.
10 years ago
Wiesław Šoltés
af9e5e6336
Removed unused usings
10 years ago
Steven Kirk
3f5f21e6ad
Removed logging to normal in BindingTest.
10 years ago
Steven Kirk
46df444cda
Logging documentation.
10 years ago
Steven Kirk
3bf4182007
Log binding errors.
10 years ago
Steven Kirk
94ea1dc6c3
Renamed .paml files to .xaml.
10 years ago
Steven Kirk
ab2d7571e1
Include default theme and base color in App.paml.
10 years ago
Steven Kirk
9d88f91852
Determine binding target at time of bind.
This is needed in order to be able to use bindings as selectors, e.g.
for TreeDataTemplate.ItemsSelector.
11 years ago
Steven Kirk
0c837f87a8
Add demo of binding to array index.
Tried to add a button to shuffle ObservableCollection, but Command binding doesn't seem to work.
11 years ago
Steven Kirk
907505f194
Get simple two-way bindings working.
11 years ago
Steven Kirk
4d5abf80e7
Added a binding test application.
11 years ago